diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-07-17 23:41:47 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-07-17 23:41:47 +0600 |
commit | c177bb3a50cde6035976603ba8094dd72cc310fa (patch) | |
tree | 9f12c5dafbb79d41249a8048483717979f7fa964 /youtube_dl | |
parent | 977a247a0639728146dd5c0d369b542e0a1af69b (diff) |
[metacafe] Use compat_urllib_parse_unquote
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/metacafe.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/metacafe.py b/youtube_dl/extractor/metacafe.py index 8bc333b02..6e2e73a51 100644 --- a/youtube_dl/extractor/metacafe.py +++ b/youtube_dl/extractor/metacafe.py @@ -6,6 +6,7 @@ from .common import InfoExtractor from ..compat import ( compat_parse_qs, compat_urllib_parse, + compat_urllib_parse_unquote, compat_urllib_request, ) from ..utils import ( @@ -155,7 +156,7 @@ class MetacafeIE(InfoExtractor): video_url = None mobj = re.search(r'(?m)&mediaURL=([^&]+)', webpage) if mobj is not None: - mediaURL = compat_urllib_parse.unquote(mobj.group(1)) + mediaURL = compat_urllib_parse_unquote(mobj.group(1)) video_ext = mediaURL[-3:] # Extract gdaKey if available |