This website works better with JavaScript.
Home
Help
Sign In
zolfa
/
youtube-dl
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1.1k
Wiki
Activity
Browse Source
[lynda] Remove unnecessary login/password encode
totalwebcasting
Sergey M․
9 years ago
parent
a3373823e1
commit
fbdaced256
1 changed files
with
2 additions
and
2 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
youtube_dl/extractor/lynda.py
+ 2
- 2
youtube_dl/extractor/lynda.py
View File
@ -28,8 +28,8 @@ class LyndaBaseIE(InfoExtractor):
return
return
login_form
=
{
login_form
=
{
'
username
'
:
username
.
encode
(
'
utf-8
'
)
,
'
password
'
:
password
.
encode
(
'
utf-8
'
)
,
'
username
'
:
username
,
'
password
'
:
password
,
'
remember
'
:
'
false
'
,
'
remember
'
:
'
false
'
,
'
stayPut
'
:
'
false
'
'
stayPut
'
:
'
false
'
}
}
Write
Preview
Loading…
Cancel
Save