summaryrefslogtreecommitdiffstats
path: root/packages.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-07-02 20:56:38 +0000
committerMike Fulbright <msf@redhat.com>2001-07-02 20:56:38 +0000
commit985db75db893d897d72a793fff6fa83a8a52a93f (patch)
treefafae6275e0d7faa34ac154f3f9e2b958e4f7311 /packages.py
parent8cedce028a159eefb9a99c758b7db57ba016420f (diff)
downloadanaconda-985db75db893d897d72a793fff6fa83a8a52a93f.tar.gz
anaconda-985db75db893d897d72a793fff6fa83a8a52a93f.tar.xz
anaconda-985db75db893d897d72a793fff6fa83a8a52a93f.zip
Fix yes/no dialog to actually work in text mode, fix GUI messageWindow to return a valid boolean value for yes/no dialog. Also fixup calls to messageWindow appropriately.
Diffstat (limited to 'packages.py')
-rw-r--r--packages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages.py b/packages.py
index 88bf0bd4b..fe1d8dda8 100644
--- a/packages.py
+++ b/packages.py
@@ -37,7 +37,7 @@ def queryUpgradeContinue(intf, dir):
"mounted. You cannot go back past this point. "
"\n\n") +
_( "Would you like to continue with the upgrade?"),
- type = "yesno").getrc()
+ type = "yesno")
if rc == 1:
sys.exit(0)