Made sure commands are executed in order

This commit is contained in:
Lord Anton Hvornum 2018-04-07 13:21:23 +02:00
parent d0f5631626
commit 9869d8d27d
1 changed files with 2 additions and 1 deletions

View File

@ -253,7 +253,8 @@ if __name__ == '__main__':
print('[N] No instructions for this box on this mac: {}'.format(mac))
continue
instructions = json.loads(instructions.decode('UTF-8'))
print('Decoding:', instructions)
instructions = json.loads(instructions.decode('UTF-8'), object_pairs_hook=oDict)
for title in instructions:
print('[N] {}'.format(title))