summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-12-17 02:41:34 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2013-12-17 02:41:34 +0100
commitec98946ef9ae19f5218ac66d72d61883709982ca (patch)
tree980da341adb61a5d8b5c20461a664f59c4d50e98
parentfa77b742ac54c2125e7dca931f533cd3e945b8f7 (diff)
downloadyoutube-dl-ec98946ef9ae19f5218ac66d72d61883709982ca.tar.gz
youtube-dl-ec98946ef9ae19f5218ac66d72d61883709982ca.tar.xz
youtube-dl-ec98946ef9ae19f5218ac66d72d61883709982ca.zip
[academicearth] Support playlists (Closes #1976)
-rw-r--r--youtube_dl/extractor/academicearth.py2
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):