diff options
author | Peter Jones <pjones@redhat.com> | 2005-03-09 22:43:40 +0000 |
---|---|---|
committer | Peter Jones <pjones@redhat.com> | 2005-03-09 22:43:40 +0000 |
commit | 19b13fb308c5a08962432eb1088f5cc6409228b7 (patch) | |
tree | f3758540b2fd3ccd49af18e7ac5787e6b8cd7a06 | |
parent | 58c3f1b1e20f6783cc1c1052a44a12a15ed4bea2 (diff) | |
download | anaconda-19b13fb308c5a08962432eb1088f5cc6409228b7.tar.gz anaconda-19b13fb308c5a08962432eb1088f5cc6409228b7.tar.xz anaconda-19b13fb308c5a08962432eb1088f5cc6409228b7.zip |
getRaidUtils() doesn't need "raid." before it; that just breaks things
-rw-r--r-- | raid.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ def getRaidLevels(): return avail # XXX define availraidlevels and defaultmntpts as arch characteristics -availRaidLevels = raid.getRaidLevels() +availRaidLevels = getRaidLevels() import parted import isys |