youtube-dl

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

commit a3373823e1bd0239e0f58d5dd16ef5a4ec6bceb3
parent 03caa463e73c2ae2f666b85febf25ddb03f961ca
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri,  1 Apr 2016 22:42:09 +0600

[udemy] Remove unnecessary login/password encode

This is now covered by compat_urllib_parse_urlencode

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

diff --git a/youtube_dl/extractor/udemy.py b/youtube_dl/extractor/udemy.py @@ -151,8 +151,8 @@ class UdemyIE(InfoExtractor): login_form = self._form_hidden_inputs('login-form', login_popup) login_form.update({ - 'email': username.encode('utf-8'), - 'password': password.encode('utf-8'), + 'email': username, + 'password': password, }) request = sanitized_Request(