From 394241cd6f4b4dbf0ed4aaa827a5611bf33a676f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Thu, 20 Jul 2017 15:01:47 +0200 Subject: [PATCH] [2chan] fix extraction --- gallery_dl/extractor/2chan.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gallery_dl/extractor/2chan.py b/gallery_dl/extractor/2chan.py index d1158c93..58f05f1e 100644 --- a/gallery_dl/extractor/2chan.py +++ b/gallery_dl/extractor/2chan.py @@ -86,6 +86,7 @@ class FutabaThreadExtractor(Extractor): @staticmethod def _extract_image(post, data): text.extract_all(post, ( - ("filename", '_blank">', '<'), + (None , '_blank', ''), + ("filename", '>', '<'), ("fsize" , '(', ' '), ), 0, data)