Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-11-29 20:19:44 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-11-29 20:19:44 +0000
commit3563f00d877ec9a34ff17523d121401ee75ee758 (patch)
treee58e65dd11aed9697f25e1cca955e78290cf5c5f /archinstall
parent8f0e8212c36cd72fba23102968f9955a4b742af6 (diff)
Spelling error
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/profiles.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/profiles.py b/archinstall/lib/profiles.py
index 6d609b77..8a842cce 100644
--- a/archinstall/lib/profiles.py
+++ b/archinstall/lib/profiles.py
@@ -45,7 +45,7 @@ def list_profiles(filter_irrelevant_macs=True):
if storage['PROFILE_DB']:
try:
profile_list = json.loads(grab_url_data(os.path.join(storage["UPSTREAM_URL"], storage['PROFILE_DB'])))
- except urllib.error.UTTPError as err:
+ except urllib.error.HTTPError as err:
print(f'Error: Listing profiles on URL "{storage["UPSTREAM_URL"]}" resulted in:', err)
return cache
except: