Allow unicode characters in `info.json`

Closes #2139
This commit is contained in:
pukkandan 2021-12-28 04:21:13 +05:30
parent f02d24d8d2
commit 45d86abeb4
No known key found for this signature in database
GPG Key ID: 0F00D95A001F4698
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ def write_json_file(obj, fn):
try:
with tf:
json.dump(obj, tf)
json.dump(obj, tf, ensure_ascii=False)
if sys.platform == 'win32':
# Need to remove existing file on Windows, else os.rename raises
# WindowsError or FileExistsError.