From: Stephen Soltesz Date: Wed, 4 Feb 2009 16:10:41 +0000 (+0000) Subject: merge 'sorted' change into trunk. X-Git-Tag: BootManager-4.3-3~13 X-Git-Url: http://git.onelab.eu/?p=bootmanager.git;a=commitdiff_plain;h=b6015d1a9c5e83983e1550d1078d589a0b73b52b merge 'sorted' change into trunk. --- diff --git a/source/systeminfo.py b/source/systeminfo.py index 25f5ea6..8be877f 100755 --- a/source/systeminfo.py +++ b/source/systeminfo.py @@ -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,