diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-07-23 03:12:16 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-07-23 03:12:16 +0000 |
commit | 05405863ee85cda7cba38d6a124ea9c2c06efe3b (patch) | |
tree | 6e0c3455b94f32d3e9585045d5221431e507dabe /installclasses/server.py | |
parent | c2466437193887d7070368b628535302c8f5e44e (diff) | |
download | anaconda-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/server.py')
-rw-r--r-- | installclasses/server.py | 3 |
1 files changed, 0 insertions, 3 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): |