youtube-dl

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

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

[pluralsight] Remove unnecessary login/password encode

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

diff --git a/youtube_dl/extractor/pluralsight.py b/youtube_dl/extractor/pluralsight.py @@ -64,8 +64,8 @@ class PluralsightIE(PluralsightBaseIE): login_form = self._hidden_inputs(login_page) login_form.update({ - 'Username': username.encode('utf-8'), - 'Password': password.encode('utf-8'), + 'Username': username, + 'Password': password, }) post_url = self._search_regex(