aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/raywenderlich.py
diff options
context:
space:
mode:
Diffstat (limited to 'hypervideo_dl/extractor/raywenderlich.py')
-rw-r--r--hypervideo_dl/extractor/raywenderlich.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hypervideo_dl/extractor/raywenderlich.py b/hypervideo_dl/extractor/raywenderlich.py
index 5411ece..f04d51f 100644
--- a/hypervideo_dl/extractor/raywenderlich.py
+++ b/hypervideo_dl/extractor/raywenderlich.py
@@ -72,7 +72,7 @@ class RayWenderlichIE(InfoExtractor):
return compat_str(video_id)
def _real_extract(self, url):
- mobj = re.match(self._VALID_URL, url)
+ mobj = self._match_valid_url(url)
course_id, lesson_id = mobj.group('course_id', 'id')
display_id = '%s/%s' % (course_id, lesson_id)