1
0
mirror of https://gitlab.com/ytdl-org/youtube-dl.git synced 2026-04-05 00:00:03 -04:00

[lynda] Fix non-ASCII logins/passwords on python 2

This commit is contained in:
Sergey M․
2015-06-26 19:48:23 +06:00
parent 62cca96b72
commit 2988835af5
+2 -2
View File
@@ -30,8 +30,8 @@ class LyndaBaseIE(InfoExtractor):
return
login_form = {
'username': username,
'password': password,
'username': username.encode('utf-8'),
'password': password.encode('utf-8'),
'remember': 'false',
'stayPut': 'false'
}