Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall.py
diff options
context:
space:
mode:
authorLord Anton Hvornum <anton.feeds@gmail.com>2018-04-07 13:21:23 +0200
committerLord Anton Hvornum <anton.feeds@gmail.com>2018-04-07 13:21:36 +0200
commit9869d8d27db7ae6c13f5ed426d6263da3cf6fb7b (patch)
treecc9c819ab0a3afeb5b511001f0b0d2f4ebeb72d0 /archinstall.py
parentd0f563162684f0f861c08a9a37e42f0b7a8ee3b2 (diff)
Made sure commands are executed in order
Diffstat (limited to 'archinstall.py')
-rw-r--r--archinstall.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index 5970b385..d8de16b1 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -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))