fix bug in test_init and update example URLs

This commit is contained in:
Mike Fährmann
2023-09-14 13:27:03 +02:00
parent 24a1d46391
commit 27ec653991
17 changed files with 22 additions and 22 deletions

View File

@@ -96,7 +96,7 @@ class BloggerPostExtractor(BloggerExtractor):
"""Extractor for a single blog post"""
subcategory = "post"
pattern = BASE_PATTERN + r"(/\d\d\d\d/\d\d/[^/?#]+\.html)"
example = "https://BLOG.blogspot.com/YYYY/MM/TITLE.html"
example = "https://BLOG.blogspot.com/1970/01/TITLE.html"
def __init__(self, match):
BloggerExtractor.__init__(self, match)