logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: c177bb3a50cde6035976603ba8094dd72cc310fa
parent 977a247a0639728146dd5c0d369b542e0a1af69b
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri, 17 Jul 2015 23:41:47 +0600

[metacafe] Use compat_urllib_parse_unquote

Diffstat:

Myoutube_dl/extractor/metacafe.py3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 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