mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 15:54:38 +00:00
Merge pull request #69 from an0nusr/add_name_to_download_fail
When a download fails, include filename in output.
This commit is contained in:
commit
253cc74f7d
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ page_num = args.start
|
||||||
def download_file(url, fname, desc):
|
def download_file(url, fname, desc):
|
||||||
r = session.get(url, stream=True)
|
r = session.get(url, stream=True)
|
||||||
if r.status_code != 200:
|
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
|
return False
|
||||||
|
|
||||||
total = int(r.headers.get('Content-Length', 0))
|
total = int(r.headers.get('Content-Length', 0))
|
||||||
|
|
Loading…
Add table
Reference in a new issue