From b75d158d014d6c43d7d785c46c9372a9cf84d144 Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Mon, 26 Aug 2019 19:34:45 -0400 Subject: New upstream version 1.10.2 --- gallery_dl/extractor/common.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gallery_dl/extractor/common.py') diff --git a/gallery_dl/extractor/common.py b/gallery_dl/extractor/common.py index 5c40e2a..a90af1c 100644 --- a/gallery_dl/extractor/common.py +++ b/gallery_dl/extractor/common.py @@ -87,7 +87,8 @@ class Extractor(): raise exception.HttpError(exc) else: code = response.status_code - if 200 <= code < 400 or not fatal and \ + if 200 <= code < 400 or fatal is None and \ + (400 <= code < 500) or not fatal and \ (400 <= code < 429 or 431 <= code < 500): if encoding: response.encoding = encoding -- cgit v1.2.3