We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd9f289 commit 63566beCopy full SHA for 63566be
1 file changed
archinstall/lib/args.py
@@ -470,7 +470,7 @@ def _fetch_from_url(self, url: str) -> str:
470
try:
471
req = Request(url, headers={'User-Agent': 'ArchInstall'})
472
with urlopen(req) as resp:
473
- return resp.read()
+ return resp.read().decode('utf-8')
474
except urllib.error.HTTPError as err:
475
error(f"Could not fetch JSON from {url}: {err}")
476
else:
0 commit comments