Commit 0ca63b35 authored by Francesco Poldi's avatar Francesco Poldi

Fix non-latin chars #229

parent 95a0ad9c
......@@ -44,5 +44,5 @@ def Json(obj, config):
null, data = struct(obj, config.Custom, Type(config))
with open(config.Output, "a", newline='', encoding="utf-8") as json_file:
json.dump(data, json_file)
json.dump(data, json_file, ensure_ascii=False)
json_file.write("\n")
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment