mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-05 01:48:01 +09:00
[youtube] Encode the data when submitting the form for confirming the age
Needed on python 3
This commit is contained in:
parent
38c2e5b8d5
commit
5700e7792a
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user