summaryrefslogtreecommitdiffstats
path: root/booty
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-03-17 10:08:55 -0400
committerChris Lumens <clumens@redhat.com>2009-03-17 10:08:55 -0400
commit2538723c53378bfe2044aa9fbc466e8a0d940607 (patch)
tree7e0cbeaf09683142def79b676a3dbe15c96dfa4b /booty
parent0492bad33dd1b4b2002950efb9b1ac8f17e4cb4c (diff)
downloadanaconda-2538723c53378bfe2044aa9fbc466e8a0d940607.tar.gz
anaconda-2538723c53378bfe2044aa9fbc466e8a0d940607.tar.xz
anaconda-2538723c53378bfe2044aa9fbc466e8a0d940607.zip
storage.disks never includes disks without media present.
Diffstat (limited to 'booty')
-rw-r--r--booty/bootloaderInfo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/booty/bootloaderInfo.py b/booty/bootloaderInfo.py
index d1147348c..0c1ec5b5b 100644
--- a/booty/bootloaderInfo.py
+++ b/booty/bootloaderInfo.py
@@ -453,7 +453,7 @@ class bootloaderInfo:
f.write("\n")
def updateDriveList(self, sortedList=[]):
- self._drivelist = map(lambda x: x.name, filter(lambda dev: dev.mediaPresent, self.storage.disks))
+ self._drivelist = map(lambda x: x.name, self.storage.disks)
self._drivelist.sort(isys.compareDrives)
# If we're given a sort order, make sure the drives listed in it