From: Jaime Marquínez Ferrándiz Date: Sat, 25 Jan 2014 16:22:41 +0000 (+0100) Subject: [youtube] Encode the data when submitting the form for confirming the age X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=5700e7792aed45d6504ae957610d8254d5bb073f;p=youtube-dl [youtube] Encode the data when submitting the form for confirming the age Needed on python 3 --- diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index c3fbbc0de..87a5a452e 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -111,7 +111,8 @@ class YoutubeBaseInfoExtractor(InfoExtractor): 'next_url': '/', 'action_confirm': 'Confirm', } - req = compat_urllib_request.Request(self._AGE_URL, compat_urllib_parse.urlencode(age_form)) + req = compat_urllib_request.Request(self._AGE_URL, + compat_urllib_parse.urlencode(age_form).encode('ascii')) self._download_webpage( req, None,