summaryrefslogtreecommitdiffstats
path: root/raid.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-05-05 20:22:11 +0000
committerErik Troan <ewt@redhat.com>2000-05-05 20:22:11 +0000
commit17a701fe7834064248c7e5b8728ceea448c4b6ba (patch)
tree6296612f321399e385c8986fbb75675e0f107b82 /raid.py
parent93012868d17c85c679e37251cffa0c2c70dae673 (diff)
downloadanaconda-17a701fe7834064248c7e5b8728ceea448c4b6ba.tar.gz
anaconda-17a701fe7834064248c7e5b8728ceea448c4b6ba.tar.xz
anaconda-17a701fe7834064248c7e5b8728ceea448c4b6ba.zip
use symbolc names for balkan partition types
Diffstat (limited to 'raid.py')
-rw-r--r--raid.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/raid.py b/raid.py
index cee38243c..01659fc0e 100644
--- a/raid.py
+++ b/raid.py
@@ -18,7 +18,7 @@ def scanForRaid(drives):
os.remove("/tmp/" + d)
for i in range(0, len(parts) - 1):
(type, start, size) = parts[i]
- if type != 7: continue
+ if type != _balkan.RAID: continue
dev = "%s%d" % (d, i + 1)