youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit fbdaced256f9d7d9b0adb97d093f0f381c9483f7
parent a3373823e1bd0239e0f58d5dd16ef5a4ec6bceb3
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri,  1 Apr 2016 22:45:20 +0600

[lynda] Remove unnecessary login/password encode

Diffstat:
Myoutube_dl/extractor/lynda.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/lynda.py b/youtube_dl/extractor/lynda.py @@ -28,8 +28,8 @@ class LyndaBaseIE(InfoExtractor): return login_form = { - 'username': username.encode('utf-8'), - 'password': password.encode('utf-8'), + 'username': username, + 'password': password, 'remember': 'false', 'stayPut': 'false' }