diff options
| author | 2025-09-07 20:40:45 -0400 | |
|---|---|---|
| committer | 2025-09-07 20:40:45 -0400 | |
| commit | 243b2597edb922fe7e0b0d887e80bb7ebbe72ab7 (patch) | |
| tree | 1a42ddec8ae1f21e3c4c88849818e1ea9140aaaa /gallery_dl/extractor/zerochan.py | |
| parent | 1df55d9de48105dace9cc16f1511dba3c9a6da6f (diff) | |
New upstream version 1.30.6.upstream/1.30.6
Diffstat (limited to 'gallery_dl/extractor/zerochan.py')
| -rw-r--r-- | gallery_dl/extractor/zerochan.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gallery_dl/extractor/zerochan.py b/gallery_dl/extractor/zerochan.py index fca8911..e1b4897 100644 --- a/gallery_dl/extractor/zerochan.py +++ b/gallery_dl/extractor/zerochan.py @@ -55,7 +55,8 @@ class ZerochanExtractor(BooruExtractor): "login" : "Login", } - response = self.request(url, method="POST", headers=headers, data=data) + response = self.request( + url, method="POST", headers=headers, data=data, expected=(500,)) if not response.history: raise exception.AuthenticationError() |
