diff options
author | 2017-08-03 23:38:22 +1000 | |
---|---|---|
committer | 2017-08-03 23:38:22 +1000 | |
commit | 8eb07ffe97cec831711b9bbd2c5bdc97a14a5b52 (patch) | |
tree | 2b7f3e229952b2aaacaf9bdc85185604cf3584b3 /scripts/minimaws/lib/lxparse.py | |
parent | 224cfaeb6a3ceac946a0bf6321a822e161c494c6 (diff) |
minimaws: add machine feature status flags and slot card selection with live update
Diffstat (limited to 'scripts/minimaws/lib/lxparse.py')
-rw-r--r-- | scripts/minimaws/lib/lxparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/minimaws/lib/lxparse.py b/scripts/minimaws/lib/lxparse.py index cf194128708..aeab5c1266d 100644 --- a/scripts/minimaws/lib/lxparse.py +++ b/scripts/minimaws/lib/lxparse.py @@ -179,7 +179,7 @@ class MachineHandler(ElementHandler): else: if name == 'device_ref': self.dbcurs.add_devicereference(self.id, attrs['name']) - elif name == 'feaure': + elif name == 'feature': self.dbcurs.add_featuretype(attrs['type']) status = 0 if 'status' not in attrs else 2 if attrs['status'] == 'unemulated' else 1 overall = status if 'overall' not in attrs else 2 if attrs['overall'] == 'unemulated' else 1 |