diff options
| author | 2021-04-13 19:33:47 -0400 | |
|---|---|---|
| committer | 2021-04-13 19:33:47 -0400 | |
| commit | d27dcd4646242d6da8436f14c7b37ce864355858 (patch) | |
| tree | c5c86ca7435010b6b13933217a1921430cf95dc4 /gallery_dl/extractor/dynastyscans.py | |
| parent | 3201d77a148367d739862b4f07868a76eaeb7cb1 (diff) | |
New upstream version 1.17.2.upstream/1.17.2
Diffstat (limited to 'gallery_dl/extractor/dynastyscans.py')
| -rw-r--r-- | gallery_dl/extractor/dynastyscans.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gallery_dl/extractor/dynastyscans.py b/gallery_dl/extractor/dynastyscans.py index 7d26c47..67051c9 100644 --- a/gallery_dl/extractor/dynastyscans.py +++ b/gallery_dl/extractor/dynastyscans.py @@ -1,19 +1,18 @@ # -*- coding: utf-8 -*- -# Copyright 2015-2019 Mike Fährmann +# Copyright 2015-2021 Mike Fährmann # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 as # published by the Free Software Foundation. -"""Extract manga-chapters from https://dynasty-scans.com/""" +"""Extractors for https://dynasty-scans.com/""" from .common import ChapterExtractor, Extractor, Message from .. import text import json import re - BASE_PATTERN = r"(?:https?://)?(?:www\.)?dynasty-scans\.com" @@ -36,7 +35,7 @@ class DynastyscansBase(): return { "url" : self.root + url, "image_id": text.parse_int(image_id), - "tags" : text.split_html(text.unescape(tags)), + "tags" : text.split_html(tags), "date" : text.remove_html(date), "source" : text.unescape(src), } |
