From b6df38a444c032ccf0ef096fa72a29a80d585f6c Mon Sep 17 00:00:00 2001 From: Bruno Meneguello <1322552+bkmeneguello@users.noreply.github.com> Date: Sat, 21 Jun 2025 17:50:21 -0300 Subject: [PATCH] fix: correct string encoding --- godot_parser/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/godot_parser/util.py b/godot_parser/util.py index e945b3e..42b1433 100644 --- a/godot_parser/util.py +++ b/godot_parser/util.py @@ -10,7 +10,7 @@ def stringify_object(value): if value is None: return "null" elif isinstance(value, str): - return json.dumps(value) + return json.dumps(value, ensure_ascii=False) elif isinstance(value, bool): return "true" if value else "false" elif isinstance(value, dict):