mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-16 09:26:14 -05:00
[utils] Improve encode_dict
This commit is contained in:
parent
7e3472758b
commit
7e1f5447e7
@ -1668,7 +1668,9 @@ def urlencode_postdata(*args, **kargs):
|
|||||||
|
|
||||||
|
|
||||||
def encode_dict(d, encoding='utf-8'):
|
def encode_dict(d, encoding='utf-8'):
|
||||||
return dict((k.encode(encoding), v.encode(encoding)) for k, v in d.items())
|
def encode(v):
|
||||||
|
return v.encode(encoding) if isinstance(v, compat_basestring) else v
|
||||||
|
return dict((encode(k), encode(v)) for k, v in d.items())
|
||||||
|
|
||||||
|
|
||||||
US_RATINGS = {
|
US_RATINGS = {
|
||||||
|
Loading…
Reference in New Issue
Block a user