mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-08 19:08:40 +00:00
[twitch] Fix non-ASCII logins/passwords on python 2
This commit is contained in:
parent
17b41a3337
commit
c0bf5e1c4d
|
@ -64,8 +64,8 @@ class TwitchBaseIE(InfoExtractor):
|
|||
login_page))
|
||||
|
||||
login_form.update({
|
||||
'login': username,
|
||||
'password': password,
|
||||
'login': username.encode('utf-8'),
|
||||
'password': password.encode('utf-8'),
|
||||
})
|
||||
|
||||
request = compat_urllib_request.Request(
|
||||
|
|
Loading…
Reference in a new issue