aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/academicearth.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-01-07 10:04:48 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-01-07 10:06:30 +0100
commit3798eadccdb2d681ee071403c5185ca014fb842e (patch)
tree6a6a4073c8438ffe5ae881c83fc81afa2bc9c626 /youtube_dl/extractor/academicearth.py
parent2537186d43f631ef81536801d7124db1a8e56ad9 (diff)
downloadyoutube-dl-3798eadccdb2d681ee071403c5185ca014fb842e.tar.xz
More unicode literals
Diffstat (limited to 'youtube_dl/extractor/academicearth.py')
-rw-r--r--youtube_dl/extractor/academicearth.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/academicearth.py b/youtube_dl/extractor/academicearth.py
index ac05f8246..72f81d01a 100644
--- a/youtube_dl/extractor/academicearth.py
+++ b/youtube_dl/extractor/academicearth.py
@@ -1,3 +1,4 @@
+from __future__ import unicode_literals
import re
from .common import InfoExtractor
@@ -5,7 +6,7 @@ from .common import InfoExtractor
class AcademicEarthCourseIE(InfoExtractor):
_VALID_URL = r'^https?://(?:www\.)?academicearth\.org/(?:courses|playlists)/(?P<id>[^?#/]+)'
- IE_NAME = u'AcademicEarth:Course'
+ IE_NAME = 'AcademicEarth:Course'
def _real_extract(self, url):
m = re.match(self._VALID_URL, url)