mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-19 14:38:18 +00:00
Fixed fetching files on newer versions of Python
This commit is contained in:
parent
e1739f59be
commit
2f454b21fd
|
@ -7,10 +7,17 @@ elif sys.version_info[0] == 3:
|
||||||
url_lib = urllib.request
|
url_lib = urllib.request
|
||||||
|
|
||||||
def fetch_file(url):
|
def fetch_file(url):
|
||||||
|
print("trying %s" % url)
|
||||||
try:
|
try:
|
||||||
print("trying %s" % url)
|
local = dict(url_lib.urlopen(url).info())
|
||||||
local = dict(url_lib.urlopen(url).info())["content-disposition"].split("=")[1]
|
if "Content-Disposition" in local:
|
||||||
|
key_name = "Content-Disposition"
|
||||||
|
elif "content-disposition" in local:
|
||||||
|
key_name = "content-disposition"
|
||||||
|
else:
|
||||||
|
return False
|
||||||
|
local = local[key_name].split("=")[1]
|
||||||
url_lib.urlretrieve(url, local)
|
url_lib.urlretrieve(url, local)
|
||||||
return local
|
return local
|
||||||
except:
|
except IOError:
|
||||||
return False
|
return False
|
||||||
|
|
Loading…
Reference in a new issue