summaryrefslogtreecommitdiffstats
path: root/packages.py
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2006-01-23 19:56:22 +0000
committerDavid Cantrell <dcantrell@redhat.com>2006-01-23 19:56:22 +0000
commitcf73b0c9a777f0641d294d914a8a82e33902488c (patch)
tree4226c539763eba2f81bac3a5093a21599fd0437e /packages.py
parentd9e13b52d56062ad3bd4ef2b1a8e3cef1d55d5b0 (diff)
downloadanaconda-cf73b0c9a777f0641d294d914a8a82e33902488c.tar.gz
anaconda-cf73b0c9a777f0641d294d914a8a82e33902488c.tar.xz
anaconda-cf73b0c9a777f0641d294d914a8a82e33902488c.zip
packages.py (queryUpgradeContinue): Change No button text to Reboot since
clicking it causes the system to reboot (#178096).
Diffstat (limited to 'packages.py')
-rw-r--r--packages.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/packages.py b/packages.py
index f2a8749b4..267bcef3c 100644
--- a/packages.py
+++ b/packages.py
@@ -49,8 +49,9 @@ def queryUpgradeContinue(intf, dir):
"you have chosen to upgrade have already been "
"mounted. You cannot go back past this point. "
"\n\n") +
- _( "Would you like to continue with the upgrade?"),
- type = "yesno")
+ _("Would you like to continue with the upgrade?"),
+ type="custom", custom_icon=["error","error"],
+ custom_buttons=[_("Reboot"), _("Yes")])
if rc == 0:
sys.exit(0)
return DISPATCH_FORWARD