Use urlencode_postdata across the codebase
This commit is contained in:
parent
15707c7e02
commit
6e6bc8dae5
36 changed files with 90 additions and 94 deletions
|
@ -18,6 +18,7 @@ from ..utils import (
|
|||
sanitized_Request,
|
||||
xpath_text,
|
||||
determine_ext,
|
||||
urlencode_postdata,
|
||||
)
|
||||
|
||||
|
||||
|
@ -100,7 +101,7 @@ class NiconicoIE(InfoExtractor):
|
|||
'mail': username,
|
||||
'password': password,
|
||||
}
|
||||
login_data = compat_urllib_parse_urlencode(login_form_strs).encode('utf-8')
|
||||
login_data = urlencode_postdata(login_form_strs)
|
||||
request = sanitized_Request(
|
||||
'https://secure.nicovideo.jp/secure/login', login_data)
|
||||
login_results = self._download_webpage(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue