diff options
Diffstat (limited to 'gallery_dl/extractor/fallenangels.py')
| -rw-r--r-- | gallery_dl/extractor/fallenangels.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gallery_dl/extractor/fallenangels.py b/gallery_dl/extractor/fallenangels.py index 57587b6..0503dcf 100644 --- a/gallery_dl/extractor/fallenangels.py +++ b/gallery_dl/extractor/fallenangels.py @@ -6,11 +6,10 @@ # it under the terms of the GNU General Public License version 2 as # published by the Free Software Foundation. -"""Extract manga-chapters from https://www.fascans.com/""" +"""Extractors for https://www.fascans.com/""" from .common import ChapterExtractor, MangaExtractor from .. import text, util -import json class FallenangelsChapterExtractor(ChapterExtractor): @@ -56,7 +55,7 @@ class FallenangelsChapterExtractor(ChapterExtractor): def images(page): return [ (img["page_image"], None) - for img in json.loads( + for img in util.json_loads( text.extr(page, "var pages = ", ";") ) ] |
