index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Lord Anton Hvornum <anton.feeds@gmail.com> | 2018-04-07 13:21:23 +0200 |
---|---|---|
committer | Lord Anton Hvornum <anton.feeds@gmail.com> | 2018-04-07 13:21:36 +0200 |
commit | 9869d8d27db7ae6c13f5ed426d6263da3cf6fb7b (patch) | |
tree | cc9c819ab0a3afeb5b511001f0b0d2f4ebeb72d0 | |
parent | d0f563162684f0f861c08a9a37e42f0b7a8ee3b2 (diff) |
-rw-r--r-- | archinstall.py | 3 |
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)) |