index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
-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)) |