From 9e12e073abc54857f3e82b1dd4b8a6ed2a18e75c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sat, 10 Nov 2018 19:15:21 +0100 Subject: [PATCH] [2chan] fix extraction --- gallery_dl/extractor/2chan.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gallery_dl/extractor/2chan.py b/gallery_dl/extractor/2chan.py index b831bdcc..f05f0b51 100644 --- a/gallery_dl/extractor/2chan.py +++ b/gallery_dl/extractor/2chan.py @@ -58,7 +58,7 @@ class FutabaThreadExtractor(Extractor): def posts(self, page): """Build a list of all post-objects""" page = text.extract( - page, '
', '
')[0] + page, '
')[0] return [ self.parse(post) for post in page.split('')