зеркало из https://github.com/mozilla/dinobuildr.git
Родитель
7e1e65b69c
Коммит
34cc663d64
|
@ -31,7 +31,7 @@ def downloader(url, file_path):
|
|||
if hasattr(meta.headers, 'getheaders'):
|
||||
file_size = int(meta.getheaders("Content-Length")[0])
|
||||
else:
|
||||
file_size = int(meta.headers.get("Content-Length")[0])
|
||||
file_size = int(meta.get_header("Content-Length")[0])
|
||||
print("%s is %s bytes." % (file_path, file_size))
|
||||
with open(file_path, 'wb') as code:
|
||||
chunk_size = 8192
|
||||
|
|
Загрузка…
Ссылка в новой задаче