diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-10-14 21:39:04 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-10-14 21:39:04 +0000 |
commit | 06b4a47e342535b005a05dba9629e858e23404b4 (patch) | |
tree | 7f494933bace8dc6ea4510d5e1cfa5662a1be22d /textw | |
parent | 781d4b340208f3271e7223f4bfca7631ba3afee5 (diff) | |
download | anaconda-06b4a47e342535b005a05dba9629e858e23404b4.tar.gz anaconda-06b4a47e342535b005a05dba9629e858e23404b4.tar.xz anaconda-06b4a47e342535b005a05dba9629e858e23404b4.zip |
minor cleanups (#106369)
Diffstat (limited to 'textw')
-rw-r--r-- | textw/complete_text.py | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/textw/complete_text.py b/textw/complete_text.py index 0aea9c122..e060e0ce1 100644 --- a/textw/complete_text.py +++ b/textw/complete_text.py @@ -21,13 +21,7 @@ import iutil class FinishedWindow: def __call__ (self, screen): - if iutil.getArch() == "i386": - bootstr = _("If you created a boot diskette during this " - "installation as your primary means of " - "booting %s, insert it before " - "rebooting your newly installed system.\n\n") % (productName,) - else: - bootstr = "" + bootstr = "" if iutil.getArch() == "s390": floppystr = _("Press <Enter> to end the installation process.\n\n") @@ -51,7 +45,7 @@ class FinishedWindow: "http://www.redhat.com/docs/.") %(productName,) rc = ButtonChoiceWindow (screen, _("Complete"), txt, - [ _("OK") ], help = "finished", width=60) + [ _("Reboot") ], help = "finished", width=60) return INSTALL_OK |