1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 18:53:21 +01:00

add exception name and traceback for OSErrors

This commit is contained in:
Mike Fährmann 2018-12-04 19:24:50 +01:00
parent ad2cefda6b
commit 0225d90078
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -75,14 +75,16 @@ class Job():
except exception.StopExtraction:
pass
except OSError as exc:
log.error("Unable to download data: %s", exc)
log.error("Unable to download data: %s: %s",
exc.__class__.__name__, exc)
log.debug("", exc_info=True)
except Exception as exc:
log.error(("An unexpected error occurred: %s - %s. "
"Please run gallery-dl again with the --verbose flag, "
"copy its output and report this issue on "
"https://github.com/mikf/gallery-dl/issues ."),
exc.__class__.__name__, exc)
log.debug("Traceback", exc_info=True)
log.debug("", exc_info=True)
self.handle_finalize()
def dispatch(self, msg):