mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
Python 3: don't convert unicode to unicode
This commit is contained in:
@@ -323,7 +323,7 @@ def json_dict_bytes_to_unicode(d, encoding='utf-8'):
|
||||
and dict container types (the containers that the json module returns)
|
||||
'''
|
||||
|
||||
if isinstance(d, str):
|
||||
if isinstance(d, bytes):
|
||||
return unicode(d, encoding)
|
||||
elif isinstance(d, dict):
|
||||
return dict(imap(json_dict_bytes_to_unicode, iteritems(d), repeat(encoding)))
|
||||
|
||||
Reference in New Issue
Block a user