Skip to content

Commit

Permalink
Add ensure_ascii=False to missed file
Browse files Browse the repository at this point in the history
  • Loading branch information
UmbralReaper committed Jul 9, 2021
1 parent cb8241f commit f1e9ec2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/gfx_tools/png_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

def write_to_json(pathname, data):
with open(pathname, "w", encoding="utf-8") as fp:
json.dump(data, fp)
json.dump(data, fp, ensure_ascii=False)

json_formatter = "./tools/format/json_formatter.cgi"
if os.path.isfile(json_formatter):
Expand Down

0 comments on commit f1e9ec2

Please sign in to comment.