diff options
author | Matt Wilson <msw@redhat.com> | 2001-06-23 03:24:08 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-06-23 03:24:08 +0000 |
commit | 48153651a7519d0654b8c9685907a203464bc684 (patch) | |
tree | 76ad6e78b0c26fb668a7cd27e972c46ce0f91ab4 /iw | |
parent | 7a3c395db8ac3e0db05acabd610758a555195556 (diff) | |
download | anaconda-48153651a7519d0654b8c9685907a203464bc684.tar.gz anaconda-48153651a7519d0654b8c9685907a203464bc684.tar.xz anaconda-48153651a7519d0654b8c9685907a203464bc684.zip |
more pychecker fixups
Diffstat (limited to 'iw')
-rw-r--r-- | iw/bootdisk_gui.py | 4 | ||||
-rw-r--r-- | iw/progress_gui.py | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/iw/bootdisk_gui.py b/iw/bootdisk_gui.py index 9318f8b60..abac1a25d 100644 --- a/iw/bootdisk_gui.py +++ b/iw/bootdisk_gui.py @@ -1,8 +1,8 @@ +import iutil from iw_gui import * from gtk import * from translate import _, N_ -import iutil -import dispatch +from dispatch import * class BootdiskWindow (InstallWindow): diff --git a/iw/progress_gui.py b/iw/progress_gui.py index 7fa786894..cf367cfd6 100644 --- a/iw/progress_gui.py +++ b/iw/progress_gui.py @@ -1,13 +1,13 @@ -from gtk import * -from iw_gui import * import string import rpm import os import gui -from translate import _, N_ import sys +from gtk import * +from iw_gui import * +from translate import _, N_ from packages import doInstall -import dispatch +from constants import * class InstallProgressWindow (InstallWindow): @@ -138,7 +138,7 @@ class InstallProgressWindow (InstallWindow): self.intf = intf - if dir == dispatch.DISPATCH_BACK: + if dir == DISPATCH_BACK: intf.icw.prevClicked() return |