diff options
Diffstat (limited to 'gallery_dl/downloader/http.py')
| -rw-r--r-- | gallery_dl/downloader/http.py | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gallery_dl/downloader/http.py b/gallery_dl/downloader/http.py index 54750ac..c8aeef8 100644 --- a/gallery_dl/downloader/http.py +++ b/gallery_dl/downloader/http.py @@ -144,7 +144,16 @@ class HttpDownloader(DownloaderBase): proxies=self.proxies, verify=self.verify, ) - except (ConnectionError, Timeout) as exc: + except ConnectionError as exc: + try: + reason = exc.args[0].reason + cls = reason.__class__.__name__ + pre, _, err = str(reason.args[-1]).partition(":") + msg = "{}: {}".format(cls, (err or pre).lstrip()) + except Exception: + msg = str(exc) + continue + except Timeout as exc: msg = str(exc) continue except Exception as exc: |
