aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiktor w brodlo <wiktor@brodlo.net>2011-07-21 20:40:45 +0000
committerwiktor w brodlo <wiktor@brodlo.net>2011-07-21 20:40:45 +0000
commitfd7fcfc4b97ce088680e0ed6e93734d39e6b68c4 (patch)
treeba577c9d01a17951bb17933ae104c218704a22ba
parentControl the main progress bar (diff)
downloadanaconda-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.py2
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)