summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2010-01-11 16:07:39 -0500
committerChris Lumens <clumens@redhat.com>2010-01-11 16:07:39 -0500
commit0b4ce5dd665d1d74e15f590ccf9501d52bffff5d (patch)
treee44cee80228d0751adf09c114d07d2f3e4d576ed /anaconda
parent136ae5b7a43f68cfc9b4e7526bbf4201d5fcd521 (diff)
downloadanaconda-0b4ce5dd665d1d74e15f590ccf9501d52bffff5d.tar.gz
anaconda-0b4ce5dd665d1d74e15f590ccf9501d52bffff5d.tar.xz
anaconda-0b4ce5dd665d1d74e15f590ccf9501d52bffff5d.zip
devicetree.devices is a list, not a dict (#554455).
This one somehow eluded the patch that corrected all the others.
Diffstat (limited to 'anaconda')
-rwxr-xr-xanaconda2
1 files changed, 1 insertions, 1 deletions
diff --git a/anaconda b/anaconda
index dd931d3d5..6b3398824 100755
--- a/anaconda
+++ b/anaconda
@@ -1050,7 +1050,7 @@ if __name__ == "__main__":
anaconda.intf.shutdown()
if anaconda.isKickstart and anaconda.id.ksdata.reboot.eject:
- for drive in anaconda.id.storage.devicetree.devices.values():
+ for drive in anaconda.id.storage.devicetree.devices:
if drive.type != "cdrom":
continue