mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-12 10:11:02 +01: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.update({
|
||||
'Username': username.encode('utf-8'),
|
||||
'Password': password.encode('utf-8'),
|
||||
'Username': username,
|
||||
'Password': password,
|
||||
})
|
||||
|
||||
post_url = self._search_regex(
|
||||
|
Loading…
Reference in New Issue
Block a user