summaryrefslogtreecommitdiffstats
path: root/partitions.py
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2005-03-09 22:03:01 +0000
committerPeter Jones <pjones@redhat.com>2005-03-09 22:03:01 +0000
commit58c3f1b1e20f6783cc1c1052a44a12a15ed4bea2 (patch)
tree45d6de68330e8dcd6070b1a5471e838e7fddf19e /partitions.py
parent18e563adebeae67044571d78c114693f6e08309e (diff)
downloadanaconda-58c3f1b1e20f6783cc1c1052a44a12a15ed4bea2.tar.gz
anaconda-58c3f1b1e20f6783cc1c1052a44a12a15ed4bea2.tar.xz
anaconda-58c3f1b1e20f6783cc1c1052a44a12a15ed4bea2.zip
move availRaidLevels from fsset.py to raid.py, so it can be evaluated right
in all imports
Diffstat (limited to 'partitions.py')
-rw-r--r--partitions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/partitions.py b/partitions.py
index fd80e618d..705300cb2 100644
--- a/partitions.py
+++ b/partitions.py
@@ -143,7 +143,7 @@ class Partitions:
(theDev, devices, level, numActive) = raidDev
level = "RAID%s" %(level,)
- if level not in fsset.availRaidLevels:
+ if level not in raid.availRaidLevels:
log("raid level %s not supported, skipping %s" %(level,
theDev))
continue