summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-29 15:36:17 +0000
committerMatt Wilson <msw@redhat.com>1999-09-29 15:36:17 +0000
commit1a7154fc8624308bbe6a20621113be739b44f77c (patch)
treef19d7b313225a492a8070e9e8980c6df00c72f22 /text.py
parent7139525deba887245eddfa928ea7f39845438feb (diff)
downloadanaconda-1a7154fc8624308bbe6a20621113be739b44f77c.tar.gz
anaconda-1a7154fc8624308bbe6a20621113be739b44f77c.tar.xz
anaconda-1a7154fc8624308bbe6a20621113be739b44f77c.zip
updates
Diffstat (limited to 'text.py')
-rw-r--r--text.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/text.py b/text.py
index 8d2106617..c5c2d84fb 100644
--- a/text.py
+++ b/text.py
@@ -1005,6 +1005,14 @@ class InstallInterface:
dir = 1
self.step = self.step + dir
+ if self.step < 0:
+ ButtonChoiceWindow(self.screen, _("Cancelled"),
+ _("I can't go to the previous step"
+ " from here. You will have to try again."),
+ buttons = [ _("OK") ])
+
+ self.step = 0
+ dir = 1
self.screen.finish ()
def killSelf(screen):