Browse Source

[utils] Improve encode_dict

totalwebcasting
Sergey M․ 9 years ago
parent
commit
7e1f5447e7
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      youtube_dl/utils.py

+ 3
- 1
youtube_dl/utils.py View File

@ -1668,7 +1668,9 @@ def urlencode_postdata(*args, **kargs):
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 = {


Loading…
Cancel
Save