From 6e109e6d00da36b7b7fae952b3db9ee1a8e32127 Mon Sep 17 00:00:00 2001 From: anonusr <97858880+an0nusr@users.noreply.github.com> Date: Sat, 26 Mar 2022 14:43:55 -0700 Subject: [PATCH] When a download fails, include filename in output. --- furaffinity-dl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/furaffinity-dl.py b/furaffinity-dl.py index ace8744..aedf3fb 100755 --- a/furaffinity-dl.py +++ b/furaffinity-dl.py @@ -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))