mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-25 04:02:32 +01:00
[common] allow request() to accept all HTTP status codes
by passing Ellipsis/... as 'fatal' argument
This commit is contained in:
parent
1df09292b5
commit
6d8d882dbf
@ -185,7 +185,9 @@ class Extractor():
|
|||||||
self._dump_response(response)
|
self._dump_response(response)
|
||||||
if (
|
if (
|
||||||
code < 400 or
|
code < 400 or
|
||||||
code < 500 and (not fatal and code != 429 or fatal is None)
|
code < 500 and (
|
||||||
|
not fatal and code != 429 or fatal is None) or
|
||||||
|
fatal is ...
|
||||||
):
|
):
|
||||||
if encoding:
|
if encoding:
|
||||||
response.encoding = encoding
|
response.encoding = encoding
|
||||||
|
Loading…
Reference in New Issue
Block a user