Merge pull request #69 from an0nusr/add_name_to_download_fail

When a download fails, include filename in output.
This commit is contained in:
Liam 2022-03-27 15:32:10 +01:00 committed by GitHub
commit 253cc74f7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -81,7 +81,7 @@ page_num = args.start
def download_file(url, fname, desc):
r = session.get(url, stream=True)
if r.status_code != 200:
print("Got a HTTP {} while downloading; skipping".format(r.status_code))
print("Got a HTTP {} while downloading {}; skipping".format(r.status_code, fname))
return False
total = int(r.headers.get('Content-Length', 0))