mirror of
https://github.com/ytdl-org/youtube-dl
synced 2024-11-14 22:37:59 +09:00
[pluralsight] Remove unnecessary login/password encode
This commit is contained in:
parent
fbdaced256
commit
244cd04237
@ -64,8 +64,8 @@ class PluralsightIE(PluralsightBaseIE):
|
|||||||
login_form = self._hidden_inputs(login_page)
|
login_form = self._hidden_inputs(login_page)
|
||||||
|
|
||||||
login_form.update({
|
login_form.update({
|
||||||
'Username': username.encode('utf-8'),
|
'Username': username,
|
||||||
'Password': password.encode('utf-8'),
|
'Password': password,
|
||||||
})
|
})
|
||||||
|
|
||||||
post_url = self._search_regex(
|
post_url = self._search_regex(
|
||||||
|
Loading…
Reference in New Issue
Block a user