summaryrefslogtreecommitdiffstats
path: root/text.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 /text.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 'text.py')
-rw-r--r--text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/text.py b/text.py
index 58149e0d6..a452156cb 100644
--- a/text.py
+++ b/text.py
@@ -259,7 +259,7 @@ class InstallInterface:
idx = 0
for b in tmpbut:
if string.lower(b) == rc:
- return idx != 0
+ return idx
idx = idx + 1
return 0
else: