mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-05 15:54:38 +00:00
Add log when get content length for url failed.
This commit is contained in:
parent
976ed6f12c
commit
a43882456d
1 changed files with 2 additions and 1 deletions
|
@ -176,7 +176,8 @@ def get_content_length(url):
|
||||||
return 0
|
return 0
|
||||||
content_length = r.headers.get("Content-Length", 0)
|
content_length = r.headers.get("Content-Length", 0)
|
||||||
return int(content_length)
|
return int(content_length)
|
||||||
except Exception:
|
except Exception as e:
|
||||||
|
print(f'{config.ERROR_COLOR}Can not get content length for {url}...{config.END}')
|
||||||
pass
|
pass
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue