mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[pluralsight] Remove unnecessary login/password encode
This commit is contained in:
parent
fbdaced256
commit
244cd04237
1 changed files with 2 additions and 2 deletions
|
@ -64,8 +64,8 @@ def _login(self):
|
||||||
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 a new issue