Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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))