Use urlencode_postdata across the codebase

This commit is contained in:
Sergey M․ 2016-03-26 02:19:24 +06:00
parent 15707c7e02
commit 6e6bc8dae5
36 changed files with 90 additions and 94 deletions

View file

@ -5,11 +5,11 @@ import os.path
import re
from .common import InfoExtractor
from ..compat import compat_urllib_parse_urlencode
from ..utils import (
ExtractorError,
remove_start,
sanitized_Request,
urlencode_postdata,
)
@ -88,7 +88,7 @@ class MonikerIE(InfoExtractor):
fields = re.findall(r'type="hidden" name="(.+?)"\s* value="?(.+?)">', orig_webpage)
data = dict(fields)
post = compat_urllib_parse_urlencode(data)
post = urlencode_postdata(data)
headers = {
b'Content-Type': b'application/x-www-form-urlencoded',
}