merge 'sorted' change into trunk.
authorStephen Soltesz <soltesz@cs.princeton.edu>
Wed, 4 Feb 2009 16:10:41 +0000 (16:10 +0000)
committerStephen Soltesz <soltesz@cs.princeton.edu>
Wed, 4 Feb 2009 16:10:41 +0000 (16:10 +0000)
source/systeminfo.py

index 25f5ea6..8be877f 100755 (executable)
@@ -277,7 +277,9 @@ def get_system_modules( vars = {}, log = sys.stderr):
     # XXX: this is really similar to what BootCD/conf_files/pl_hwinit does. merge?
     pcidevs = get_devices()
 
-    for slot in sorted(pcidevs.keys()):
+    devlist=pcidevs.keys()
+    devlist.sort()
+    for slot in devlist:
         dev = pcidevs[slot]
         base = (dev[4] & 0xff0000) >> 16
         if base not in (PCI_BASE_CLASS_STORAGE,