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 /installclass.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 'installclass.py')
-rw-r--r-- | installclass.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installclass.py b/installclass.py index d2c72cb73..99b4461b1 100644 --- a/installclass.py +++ b/installclass.py @@ -9,7 +9,7 @@ import string from xf86config import XF86Config from translate import _ from instdata import InstallData -from autopart import * +from partitioning import * class BaseInstallClass: # default to not being hidden |