diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-12-17 02:41:34 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-12-17 02:41:34 +0100 |
commit | ec98946ef9ae19f5218ac66d72d61883709982ca (patch) | |
tree | 980da341adb61a5d8b5c20461a664f59c4d50e98 /youtube_dl/extractor/academicearth.py | |
parent | fa77b742ac54c2125e7dca931f533cd3e945b8f7 (diff) |
[academicearth] Support playlists (Closes #1976)
Diffstat (limited to 'youtube_dl/extractor/academicearth.py')
-rw-r--r-- | youtube_dl/extractor/academicearth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/academicearth.py b/youtube_dl/extractor/academicearth.py index 5045e7332..c450c30ca 100644 --- a/youtube_dl/extractor/academicearth.py +++ b/youtube_dl/extractor/academicearth.py @@ -9,7 +9,7 @@ from ..utils import ( class AcademicEarthCourseIE(InfoExtractor): - _VALID_URL = r'^https?://(?:www\.)?academicearth\.org/courses/(?P<id>[^?#/]+)' + _VALID_URL = r'^https?://(?:www\.)?academicearth\.org/(?:courses|playlists)/(?P<id>[^?#/]+)' IE_NAME = u'AcademicEarth:Course' def _real_extract(self, url): |