diff options
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/hw_inventory.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils/hw_inventory.py b/src/utils/hw_inventory.py index 9bf826e..09a9fae 100644 --- a/src/utils/hw_inventory.py +++ b/src/utils/hw_inventory.py @@ -293,10 +293,10 @@ def legacy_list_hardware_inventory(inventory): def get_hardware_inventory(): proc = subprocess.run(['lshw', '-json'], stdout=subprocess.PIPE, stderr=subprocess.DEVNULL) - j = json.loads(proc.stdout) + root = json.loads(proc.stdout) - if type(j) is list: - root = j[0] + if type(root) is list: + root = root[0] if type(root) is not dict: raise OgError('Invalid lshw json output') |