diff --git a/gallery_dl/exception.py b/gallery_dl/exception.py index ee183fcc..08dcfdce 100644 --- a/gallery_dl/exception.py +++ b/gallery_dl/exception.py @@ -57,7 +57,7 @@ class HttpError(ExtractionError): def __init__(self, message, response=None): ExtractionError.__init__(self, message) self.response = response - self.status = response.status_code if response else 0 + self.status = 0 if response is None else response.status_code class NotFoundError(ExtractionError):