From: Stephen Soltesz Date: Wed, 4 Feb 2009 16:04:37 +0000 (+0000) Subject: the 'sorted' function does not exist in earlier versions of python. reverted X-Git-Tag: BootManager-3.2-16~2 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=d65ac16de006714d6a93fbf38e94480e45ded029;p=bootmanager.git the 'sorted' function does not exist in earlier versions of python. reverted code to use 'sort' to work on older bootcds. --- diff --git a/source/systeminfo.py b/source/systeminfo.py index c39e4c8..973c817 100755 --- a/source/systeminfo.py +++ b/source/systeminfo.py @@ -278,7 +278,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,