diff options
author | Chris Lumens <clumens@redhat.com> | 2005-10-06 00:20:50 +0000 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2005-10-06 00:20:50 +0000 |
commit | 8806a0a86a6c7e458cc073d65730db0fbf223df2 (patch) | |
tree | b9b0cbd87888dc4f050d1e71d00316bf4367c212 | |
parent | 4b637691e86fb3274f3cfa668292c5ab616bddbe (diff) | |
download | anaconda-8806a0a86a6c7e458cc073d65730db0fbf223df2.tar.gz anaconda-8806a0a86a6c7e458cc073d65730db0fbf223df2.tar.xz anaconda-8806a0a86a6c7e458cc073d65730db0fbf223df2.zip |
Fix constants imports so we get everything that was moved into
pykickstart.
-rw-r--r-- | installclass.py | 2 | ||||
-rw-r--r-- | iw/autopart_type.py | 2 | ||||
-rw-r--r-- | iw/network_gui.py | 2 | ||||
-rw-r--r-- | iw/partition_gui.py | 2 | ||||
-rw-r--r-- | textw/partition_text.py | 1 |
5 files changed, 4 insertions, 5 deletions
diff --git a/installclass.py b/installclass.py index 7fd6624a4..93d1ca173 100644 --- a/installclass.py +++ b/installclass.py @@ -27,7 +27,7 @@ from rhpl.translate import _, N_ import logging log = logging.getLogger("anaconda") -from constants import BETANAG +from constants import * class BaseInstallClass: # default to not being hidden diff --git a/iw/autopart_type.py b/iw/autopart_type.py index 7b64d8850..ef2ce1a44 100644 --- a/iw/autopart_type.py +++ b/iw/autopart_type.py @@ -18,7 +18,7 @@ import gtk import gobject import autopart -import constants +from constants import * import gui from partition_ui_helpers_gui import * diff --git a/iw/network_gui.py b/iw/network_gui.py index c5b4da9f9..15bccc83f 100644 --- a/iw/network_gui.py +++ b/iw/network_gui.py @@ -40,8 +40,6 @@ class NetworkWindow(InstallWindow): def getNext(self): - import kickstart - if self.getNumberActiveDevices() == 0: rc = self.handleNoActiveDevices() if not rc: diff --git a/iw/partition_gui.py b/iw/partition_gui.py index 5c3af3600..2c8b8ebf0 100644 --- a/iw/partition_gui.py +++ b/iw/partition_gui.py @@ -28,7 +28,7 @@ import string import copy import types import raid -import constants +from constants import * import lvm from iw_gui import * diff --git a/textw/partition_text.py b/textw/partition_text.py index a2196409c..dbe800d75 100644 --- a/textw/partition_text.py +++ b/textw/partition_text.py @@ -28,6 +28,7 @@ from raid import availRaidLevels from autopart import * from snack import * from constants_text import * +from constants import * from rhpl.translate import _ |