From d65ac16de006714d6a93fbf38e94480e45ded029 Mon Sep 17 00:00:00 2001 From: Stephen Soltesz Date: Wed, 4 Feb 2009 16:04:37 +0000 Subject: [PATCH] the 'sorted' function does not exist in earlier versions of python. reverted code to use 'sort' to work on older bootcds. --- source/systeminfo.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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, -- 2.47.0