summaryrefslogtreecommitdiffstats
path: root/iw/partition_gui.py
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2010-01-24 10:42:13 +0100
committerHans de Goede <hdegoede@redhat.com>2010-01-25 20:23:38 +0100
commit2e3763dd235cb0b4f7c249ae2026a2e613c146ac (patch)
tree26bae437637eac243991fd0e251ec97fdc18b372 /iw/partition_gui.py
parent1d20d8fdf1509ee615eb7d804707abe083d09891 (diff)
downloadanaconda-2e3763dd235cb0b4f7c249ae2026a2e613c146ac.tar.gz
anaconda-2e3763dd235cb0b4f7c249ae2026a2e613c146ac.tar.xz
anaconda-2e3763dd235cb0b4f7c249ae2026a2e613c146ac.zip
Remove MDRaidArrayDevice biosraid property
Now that MD BIOS RAID arrays have their own type, there is no longer a need for the biosraid property.
Diffstat (limited to 'iw/partition_gui.py')
-rw-r--r--iw/partition_gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/partition_gui.py b/iw/partition_gui.py
index 981b659e4..2e9be5ff6 100644
--- a/iw/partition_gui.py
+++ b/iw/partition_gui.py
@@ -1000,7 +1000,7 @@ class PartitionWindow(InstallWindow):
self.tree[iter]['IsLeaf'] = True
# handle RAID next
- mdarrays = [a for a in self.storage.mdarrays if not a.biosraid]
+ mdarrays = self.storage.mdarrays
if mdarrays:
raidparent = self.tree.append(None)
self.tree[raidparent]['Device'] = _("RAID Devices")