@ -151,7 +151,7 @@ def interpret(reg):
for v in reg['def']:
a = v['key']
b = v['value']
key = a[0].strip()
key = ''.join([p.strip() for p in a]).strip()
if len(expected) > 0 and key == expected[0][0]:
result[expected[0][1]] = expected[0][2](b)
expected = expected[1:]