index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds@gmail.com> | 2018-05-13 23:22:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-13 23:22:00 +0200 |
commit | 51f7543b0498a84cfc10a7f5549da2e1594ae92e (patch) | |
tree | e860e54d0b0f0f23c0671511d592b8c80019684c /archinstall.py | |
parent | a584d33c2a8bb2c1f44e3bdab28ff22141e01e10 (diff) |
-rw-r--r-- | archinstall.py | 2 |
diff --git a/archinstall.py b/archinstall.py index 9fa0d07e..2d8ad2c4 100644 --- a/archinstall.py +++ b/archinstall.py @@ -253,7 +253,7 @@ if __name__ == '__main__': for mac in locmac: try: instructions = grab_url_data('https://raw.githubusercontent.com/Torxed/archinstall/net-deploy/deployments/{}.json'.format(mac)) - except urllib.error.HTTPError: + except (urllib.error.HTTPError, urllib.error.URLError) as e: print('[N] No instructions for this box on this mac: {}'.format(mac)) continue |