summaryrefslogtreecommitdiffstats
path: root/autopart.py
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 /autopart.py
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 'autopart.py')
-rw-r--r--autopart.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/autopart.py b/autopart.py
index 0a0ce47c5..2d9494a1f 100644
--- a/autopart.py
+++ b/autopart.py
@@ -24,10 +24,6 @@ from translate import _, N_
PARTITION_FAIL = -1
PARTITION_SUCCESS = 0
-CLEARPART_TYPE_LINUX = 1
-CLEARPART_TYPE_ALL = 2
-CLEARPART_TYPE_NONE = 3
-
BOOT_ABOVE_1024 = -1
BOOTEFI_NOT_VFAT = -2