diff --git a/gallery_dl/downloader/common.py b/gallery_dl/downloader/common.py index 772a0f24..03308b30 100644 --- a/gallery_dl/downloader/common.py +++ b/gallery_dl/downloader/common.py @@ -53,6 +53,7 @@ class DownloaderBase(): def download_impl(self, url, pathfmt): """Actual implementaion of the download process""" + adj_ext = None tries = 0 msg = "" @@ -62,7 +63,7 @@ class DownloaderBase(): while True: self.reset() if tries: - self.out.error(pathfmt.path, msg, tries, self.retries) + self.log.error("%s (%d/%d)", msg, tries, self.retries) if tries >= self.retries: return False time.sleep(tries) @@ -80,7 +81,7 @@ class DownloaderBase(): except exception.DownloadComplete: break except Exception as exc: - self.out.error(pathfmt.path, exc, 0, 0) + self.log.error(exc) return False # check response diff --git a/test/test_extractors.py b/test/test_extractors.py index 4a9b41ad..78334022 100644 --- a/test/test_extractors.py +++ b/test/test_extractors.py @@ -20,6 +20,7 @@ SKIP = { # temporary issues "chronos", "coreimg", + "imagebam", }