diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-01-07 10:04:48 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-01-07 10:06:30 +0100 |
commit | 3798eadccdb2d681ee071403c5185ca014fb842e (patch) | |
tree | 6a6a4073c8438ffe5ae881c83fc81afa2bc9c626 /youtube_dl/extractor/academicearth.py | |
parent | 2537186d43f631ef81536801d7124db1a8e56ad9 (diff) |
More unicode literals
Diffstat (limited to 'youtube_dl/extractor/academicearth.py')
-rw-r--r-- | youtube_dl/extractor/academicearth.py | 3 |
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) |