summaryrefslogtreecommitdiffstats
path: root/iw/osbootwidget.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-02-16 15:21:47 -0500
committerChris Lumens <clumens@redhat.com>2009-02-16 15:21:47 -0500
commit1021f6859de97c747ab7614cccdb82e54a49c89b (patch)
tree3e1f5ad28b4131ac4ad61c545dc639b6d8b11a0a /iw/osbootwidget.py
parentb362dcf1647fa11f285ff94c3c71580f8e7fdf86 (diff)
downloadanaconda-1021f6859de97c747ab7614cccdb82e54a49c89b.tar.gz
anaconda-1021f6859de97c747ab7614cccdb82e54a49c89b.tar.xz
anaconda-1021f6859de97c747ab7614cccdb82e54a49c89b.zip
It's part.active, not part.is_active().
Diffstat (limited to 'iw/osbootwidget.py')
-rw-r--r--iw/osbootwidget.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/osbootwidget.py b/iw/osbootwidget.py
index 38e177207..5263b853e 100644
--- a/iw/osbootwidget.py
+++ b/iw/osbootwidget.py
@@ -157,7 +157,7 @@ class OSBootWidget:
pedparts = []
parts = []
disks = self.diskset.disks
- func = lambda part: (part.is_active() and
+ func = lambda part: (part.active and
part.getFlag(parted.PARTITION_LVM) != 1 and
part.getFlag(parted.PARTITION_RAID) != 1)
for drive in disks.keys():