summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-09-18 19:05:16 +0000
committerMatt Wilson <msw@redhat.com>1999-09-18 19:05:16 +0000
commit6b91dffb613f8165c00c44b6947127faf3a5f4c4 (patch)
tree648434acf65a7ef5d328a7cb1d0de27d8442354b /iw
parent6d36e9cbf6342985a5622a83b98d574d947fab27 (diff)
downloadanaconda-6b91dffb613f8165c00c44b6947127faf3a5f4c4.tar.gz
anaconda-6b91dffb613f8165c00c44b6947127faf3a5f4c4.tar.xz
anaconda-6b91dffb613f8165c00c44b6947127faf3a5f4c4.zip
diskspace checkcvs diff |less
Diffstat (limited to 'iw')
-rw-r--r--iw/progress.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/iw/progress.py b/iw/progress.py
index b0ed5e85c..3f74ca1ba 100644
--- a/iw/progress.py
+++ b/iw/progress.py
@@ -13,9 +13,12 @@ class DoInstall (Thread):
Thread.__init__ (self)
def run (self):
- self.todo.doInstall ()
+ rc = self.todo.doInstall ()
threads_enter ()
- self.icw.nextClicked ()
+ if rc:
+ self.icw.prevClicked ()
+ else:
+ self.icw.nextClicked ()
threads_leave ()
class InstallProgressWindow (InstallWindow):