diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-18 19:05:16 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-18 19:05:16 +0000 |
commit | 6b91dffb613f8165c00c44b6947127faf3a5f4c4 (patch) | |
tree | 648434acf65a7ef5d328a7cb1d0de27d8442354b /iw | |
parent | 6d36e9cbf6342985a5622a83b98d574d947fab27 (diff) | |
download | anaconda-6b91dffb613f8165c00c44b6947127faf3a5f4c4.tar.gz anaconda-6b91dffb613f8165c00c44b6947127faf3a5f4c4.tar.xz anaconda-6b91dffb613f8165c00c44b6947127faf3a5f4c4.zip |
diskspace checkcvs diff |less
Diffstat (limited to 'iw')
-rw-r--r-- | iw/progress.py | 7 |
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): |