summaryrefslogtreecommitdiffstats
path: root/installclasses
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-07-23 03:12:16 +0000
committerJeremy Katz <katzj@redhat.com>2001-07-23 03:12:16 +0000
commit05405863ee85cda7cba38d6a124ea9c2c06efe3b (patch)
tree6e0c3455b94f32d3e9585045d5221431e507dabe /installclasses
parentc2466437193887d7070368b628535302c8f5e44e (diff)
downloadanaconda-05405863ee85cda7cba38d6a124ea9c2c06efe3b.tar.gz
anaconda-05405863ee85cda7cba38d6a124ea9c2c06efe3b.tar.xz
anaconda-05405863ee85cda7cba38d6a124ea9c2c06efe3b.zip
move definitions of CLEARPART_TYPE_* to partitioning.py to avoid circular
import madness and fix everywhere that refers to the CLEARPART_TYPE_* to ensure that they import from partitioning and don't try to do so from autopart
Diffstat (limited to 'installclasses')
-rw-r--r--installclasses/server.py3
-rw-r--r--installclasses/workstation.py3
2 files changed, 0 insertions, 6 deletions
diff --git a/installclasses/server.py b/installclasses/server.py
index b9ca9f421..32575ae0e 100644
--- a/installclasses/server.py
+++ b/installclasses/server.py
@@ -3,9 +3,6 @@ from translate import *
import os
import iutil
from partitioning import *
-from autopart import CLEARPART_TYPE_LINUX
-from autopart import CLEARPART_TYPE_ALL
-from autopart import CLEARPART_TYPE_NONE
class InstallClass(BaseInstallClass):
diff --git a/installclasses/workstation.py b/installclasses/workstation.py
index 5f4cff19b..df1249eb3 100644
--- a/installclasses/workstation.py
+++ b/installclasses/workstation.py
@@ -4,9 +4,6 @@ import os
import iutil
from partitioning import *
from fsset import *
-from autopart import CLEARPART_TYPE_LINUX
-from autopart import CLEARPART_TYPE_ALL
-from autopart import CLEARPART_TYPE_NONE
class InstallClass(BaseInstallClass):
name = N_("Workstation")