summaryrefslogtreecommitdiffstats
path: root/booty/bootloaderInfo.py
diff options
context:
space:
mode:
authorHans de Goede <hdegoede@redhat.com>2010-01-26 14:58:36 +0100
committerHans de Goede <hdegoede@redhat.com>2010-01-28 22:08:47 +0100
commite32b33c0e1eb2d7b99affa8c1f683626e13e1d2f (patch)
tree1f7a4cf1cf2cdff2bf07e0003f2e64db42b04f10 /booty/bootloaderInfo.py
parent91598d0cd60f92e7a6e8c279df0a72baff31c661 (diff)
downloadanaconda-e32b33c0e1eb2d7b99affa8c1f683626e13e1d2f.tar.gz
anaconda-e32b33c0e1eb2d7b99affa8c1f683626e13e1d2f.tar.xz
anaconda-e32b33c0e1eb2d7b99affa8c1f683626e13e1d2f.zip
Hookup new python EDD code (#478996)
Replace all usage of the isys C EDD code with the new storage python EDD code. Note that this moves the sorting of partition.req_disks from devices.py to paritioning.py, because sorting now needs access to the storage object, this also has the added advantange that now we always allocatePartitions in sorted drive order, even in interactive mode.
Diffstat (limited to 'booty/bootloaderInfo.py')
-rw-r--r--booty/bootloaderInfo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/booty/bootloaderInfo.py b/booty/bootloaderInfo.py
index b92549bd0..8368e54fa 100644
--- a/booty/bootloaderInfo.py
+++ b/booty/bootloaderInfo.py
@@ -503,7 +503,7 @@ class bootloaderInfo(object):
disks = self.storage.disks
partitioned = self.storage.partitioned
self._drivelist = [d.name for d in disks if d in partitioned]
- self._drivelist.sort(isys.compareDrives)
+ self._drivelist.sort(self.storage.compareDisks)
# If we're given a sort order, make sure the drives listed in it
# are put at the head of the drivelist in that order. All other