[pluralsight] Remove unnecessary login/password encode

This commit is contained in:
Sergey M․ 2016-04-01 22:46:46 +06:00
parent fbdaced256
commit 244cd04237
1 changed files with 2 additions and 2 deletions

View File

@ -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(