fix HttpError.status value

'response' with error status code evaluates to False
pull/5256/head
Mike Fährmann 7 months ago
parent b4c46de4b8
commit e51ee6b132
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -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…
Cancel
Save