summaryrefslogtreecommitdiffstats
path: root/image.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-04-27 22:42:25 +0000
committerJeremy Katz <katzj@redhat.com>2005-04-27 22:42:25 +0000
commit6b848780c91fe00ddb83ced734d0b021eaa4e360 (patch)
tree881e0dde39c988470e913306df14aaaeb89b8be6 /image.py
parentca94c43dfda3d3d0eaaf098139bbbf47c8e3e84e (diff)
downloadanaconda-6b848780c91fe00ddb83ced734d0b021eaa4e360.tar.gz
anaconda-6b848780c91fe00ddb83ced734d0b021eaa4e360.tar.xz
anaconda-6b848780c91fe00ddb83ced734d0b021eaa4e360.zip
2005-04-27 Jeremy Katz <katzj@redhat.com>
* text.py (InstallInterface.messageWindow): Properly return the idx of the return on a custom messageWindow * image.py (presentRequiredMediaMessage): Add back button for required media message (#114770) * textw/confirm_text.py (BeginUpgradeWindow.__call__): Likewise. (BeginInstallWindow.__call__): Likewise. * iw/confirm_gui.py (UpgradeConfirmWindow.getNext) (InstallConfirmWindow.getNext): Likewise.
Diffstat (limited to 'image.py')
-rw-r--r--image.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/image.py b/image.py
index 0117f51b6..fc9f45cb5 100644
--- a/image.py
+++ b/image.py
@@ -44,7 +44,7 @@ else:
def presentRequiredMediaMessage(intf, grpset):
reqcds = []
for hdr in grpset.hdrlist.values():
- if not hdr.isSelected():
+ if not hdr.isSelected():
continue
elif hdr[1000002] not in reqcds:
reqcds.append(hdr[1000002])
@@ -93,7 +93,7 @@ def presentRequiredMediaMessage(intf, grpset):
"the installation and reboot please "
"select \"Reboot\".") % (reqcdstr,),
type="custom", custom_icon="warning",
- custom_buttons=[_("_Reboot"), _("_Continue")])
+ custom_buttons=[_("_Reboot"), _("_Back"), _("_Continue")])