aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/seeker.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/seeker.py')
-rw-r--r--hypervideo_dl/extractor/seeker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hypervideo_dl/extractor/seeker.py b/hypervideo_dl/extractor/seeker.py
index 7872dc8..e5c18c7 100644
--- a/hypervideo_dl/extractor/seeker.py
+++ b/hypervideo_dl/extractor/seeker.py
@@ -46,7 +46,7 @@ class SeekerIE(InfoExtractor):
}]
def _real_extract(self, url):
- display_id, article_id = re.match(self._VALID_URL, url).groups()
+ display_id, article_id = self._match_valid_url(url).groups()
webpage = self._download_webpage(url, display_id)
entries = []
for jwp_id in re.findall(r'data-video-id="([a-zA-Z0-9]{8})"', webpage):