diff options
author | David Cantrell <dcantrell@redhat.com> | 2009-02-12 09:34:25 -1000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2009-02-12 11:28:57 -1000 |
commit | 50f36336694a379de9f01e770808df44c60cbec9 (patch) | |
tree | 21ce386ada933ce02e290f8e100473a60b21b902 /iw/osbootwidget.py | |
parent | 9717e894fe3dd171f1248fa23ab96e3ea1a7f9f6 (diff) | |
download | anaconda-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.py | 2 |
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() |