mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-03-17 05:22:22 +09:00
changed urllib.urlencode(data) to compat_urllib_parse(data)
This commit is contained in:
parent
72ec1d3c2c
commit
dad6154b20
@ -4494,7 +4494,7 @@ class HypemIE(InfoExtractor):
|
||||
data = {'ax':1 ,
|
||||
'ts': time.time()
|
||||
}
|
||||
data_encoded = urllib.urlencode(data)
|
||||
data_encoded = compat_urllib_parse(data)
|
||||
complete_url = url + "?"+data_encoded
|
||||
request = compat_urllib_request.Request(complete_url)
|
||||
response = compat_urllib_request.urlopen(request)
|
||||
|
Loading…
Reference in New Issue
Block a user