summaryrefslogtreecommitdiffstats
path: root/iw/osbootwidget.py
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2009-02-12 09:34:25 -1000
committerDavid Cantrell <dcantrell@redhat.com>2009-02-12 11:28:57 -1000
commit50f36336694a379de9f01e770808df44c60cbec9 (patch)
tree21ce386ada933ce02e290f8e100473a60b21b902 /iw/osbootwidget.py
parent9717e894fe3dd171f1248fa23ab96e3ea1a7f9f6 (diff)
downloadanaconda-50f36336694a379de9f01e770808df44c60cbec9.tar.gz
anaconda-50f36336694a379de9f01e770808df44c60cbec9.tar.xz
anaconda-50f36336694a379de9f01e770808df44c60cbec9.zip
Removed partedUtils.get_partition_name()
Now provided by parted.Partition.getDeviceNodeName()
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 d4a294277..481267dfa 100644
--- a/iw/osbootwidget.py
+++ b/iw/osbootwidget.py
@@ -163,7 +163,7 @@ class OSBootWidget:
for drive in disks.keys():
pedparts.extend(partedUtils.filter_partitions(disks[drive], func))
for part in pedparts:
- parts.append(partedUtils.get_partition_name(part))
+ parts.append(part.getDeviceNodeName())
del pedparts
parts.sort()