diff options
author | Mike Fulbright <msf@redhat.com> | 2002-02-08 00:25:27 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2002-02-08 00:25:27 +0000 |
commit | 74a58bc0df9db27f1736d8dc1ca7ad2da5982bcd (patch) | |
tree | c77ffea98930941130ff04e4431a3c8317db53f1 /gui.py | |
parent | bc83d6166593d552512e7e7d77b36826773c7c82 (diff) | |
download | anaconda-74a58bc0df9db27f1736d8dc1ca7ad2da5982bcd.tar.gz anaconda-74a58bc0df9db27f1736d8dc1ca7ad2da5982bcd.tar.xz anaconda-74a58bc0df9db27f1736d8dc1ca7ad2da5982bcd.zip |
dont use deprecated functions
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -196,7 +196,7 @@ class ProgressWindow: processEvents () def set (self, amount): - self.progress.update (float (amount) / self.total) + self.progress.set_fraction (float (amount) / self.total) processEvents () def pop(self): |