mirror of
https://github.com/mikf/gallery-dl.git
synced 2025-01-31 19:51:34 +01:00
fix HttpError.status value
'response' with error status code evaluates to False
This commit is contained in:
parent
b4c46de4b8
commit
e51ee6b132
@ -57,7 +57,7 @@ class HttpError(ExtractionError):
|
|||||||
def __init__(self, message, response=None):
|
def __init__(self, message, response=None):
|
||||||
ExtractionError.__init__(self, message)
|
ExtractionError.__init__(self, message)
|
||||||
self.response = response
|
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):
|
class NotFoundError(ExtractionError):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user