diff options
author | wiktor w brodlo <wiktor@brodlo.net> | 2011-07-21 20:40:45 +0000 |
---|---|---|
committer | wiktor w brodlo <wiktor@brodlo.net> | 2011-07-21 20:40:45 +0000 |
commit | fd7fcfc4b97ce088680e0ed6e93734d39e6b68c4 (patch) | |
tree | ba577c9d01a17951bb17933ae104c218704a22ba | |
parent | Control the main progress bar (diff) | |
download | anaconda-fd7fcfc4b97ce088680e0ed6e93734d39e6b68c4.tar.gz anaconda-fd7fcfc4b97ce088680e0ed6e93734d39e6b68c4.tar.bz2 anaconda-fd7fcfc4b97ce088680e0ed6e93734d39e6b68c4.zip |
iw/welcome_gui.py: step is not a function!
-rw-r--r-- | iw/welcome_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/welcome_gui.py b/iw/welcome_gui.py index f9815f4..e558f25 100644 --- a/iw/welcome_gui.py +++ b/iw/welcome_gui.py @@ -115,7 +115,7 @@ environment installed on your new system. "), ip = anaconda.mainxml.get_widget("install_progress") current_progress = ip.get_fraction() step = 1/len(self.windows) - new_progress = current_progress + step() + new_progress = current_progress + step if chapter == 0: new_progress = 0 ip.set_fraction(new_progress) |