mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-10-31 22:55:26 +00:00
[udemy] Remove unnecessary login/password encode
This is now covered by compat_urllib_parse_urlencode
This commit is contained in:
parent
03caa463e7
commit
a3373823e1
1 changed files with 2 additions and 2 deletions
|
@ -151,8 +151,8 @@ class UdemyIE(InfoExtractor):
|
|||
login_form = self._form_hidden_inputs('login-form', login_popup)
|
||||
|
||||
login_form.update({
|
||||
'email': username.encode('utf-8'),
|
||||
'password': password.encode('utf-8'),
|
||||
'email': username,
|
||||
'password': password,
|
||||
})
|
||||
|
||||
request = sanitized_Request(
|
||||
|
|
Loading…
Reference in a new issue