mirror of
https://github.com/niess/python-appimage.git
synced 2026-03-14 20:30:13 +01:00
Patch 3.5 compat in json package
This commit is contained in:
@@ -36,8 +36,9 @@ def execute(appdir, name=None, python_version=None, linux_tag=None,
|
||||
'''
|
||||
|
||||
# Download releases meta data
|
||||
releases = json.load(
|
||||
urlopen('https://api.github.com/repos/niess/python-appimage/releases'))
|
||||
content = urlopen(
|
||||
'https://api.github.com/repos/niess/python-appimage/releases').read()
|
||||
releases = json.loads(content.decode())
|
||||
|
||||
|
||||
# Fetch the requested Python version or the latest if no specific version
|
||||
|
||||
Reference in New Issue
Block a user