improve output of '-K' for parent extractors (#825)

This commit is contained in:
Mike Fährmann
2020-06-14 21:39:21 +02:00
parent 6db7ed90cb
commit bb882b8cdb
4 changed files with 5 additions and 1 deletions

View File

@@ -81,6 +81,7 @@ class NaverPostExtractor(NaverBase, GalleryExtractor):
class NaverBlogExtractor(NaverBase, Extractor):
"""Extractor for a user's blog on blog.naver.com"""
subcategory = "blog"
categorytransfer = True
pattern = (r"(?:https?://)?blog\.naver\.com/"
r"(?:PostList.nhn\?(?:[^&#]+&)*blogId=([^&#]+)|(\w+)/?$)")
test = (

View File

@@ -96,6 +96,7 @@ class WebtoonsEpisodeExtractor(WebtoonsExtractor):
class WebtoonsComicExtractor(WebtoonsExtractor):
"""Extractor for an entire comic on webtoons.com"""
subcategory = "comic"
categorytransfer = True
pattern = (BASE_PATTERN + r"/([^/?&#]+)/([^/?&#]+))"
r"/list(?:\?([^#]+))")
test = (

View File

@@ -6,4 +6,4 @@
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
__version__ = "1.14.1"
__version__ = "1.14.2-dev"