propagate 'match' to base extractor constructor

This commit is contained in:
Mike Fährmann
2019-02-11 13:31:10 +01:00
parent ade86da7a1
commit 4b1880fa5e
70 changed files with 150 additions and 155 deletions

View File

@@ -44,7 +44,7 @@ class XvideosGalleryExtractor(XvideosExtractor):
)
def __init__(self, match):
XvideosExtractor.__init__(self)
XvideosExtractor.__init__(self, match)
self.user, self.gid = match.groups()
self.url = "https://www.xvideos.com/profiles/{}/photos/{}".format(
self.user, self.gid)
@@ -108,7 +108,7 @@ class XvideosUserExtractor(XvideosExtractor):
)
def __init__(self, match):
XvideosExtractor.__init__(self)
XvideosExtractor.__init__(self, match)
self.user = match.group(1)
self.url = "https://www.xvideos.com/profiles/" + self.user