Skip to content

Commit

Permalink
Merge pull request #186 from kyle-seongwoo-jun/master
Browse files Browse the repository at this point in the history
[Windows Terminal] Don't escape non-ASCII characters
  • Loading branch information
sylveon authored Jun 5, 2020
2 parents 9a4fe5f + 84ba4a7 commit 154d035
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pokemonterminal/terminal/adapters/windowsterminal.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def set_background_image(path: str):
# write to file
# it lost orignal indent, comment, ...
json_file.seek(0)
json.dump(data, json_file, indent=4)
json.dump(data, json_file, indent=4, ensure_ascii=False)
json_file.truncate()

def comment_remover(text: str) -> str:
Expand Down

0 comments on commit 154d035

Please sign in to comment.