aboutsummaryrefslogtreecommitdiff
path: root/modules/options.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/options.py')
-rw-r--r--modules/options.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/options.py b/modules/options.py
index 7703d80e..40cb4799 100644
--- a/modules/options.py
+++ b/modules/options.py
@@ -158,7 +158,7 @@ class Options:
assert not cmd_opts.freeze_settings, "saving settings is disabled"
with open(filename, "w", encoding="utf8") as file:
- json.dump(self.data, file, indent=4)
+ json.dump(self.data, file, indent=4, ensure_ascii=False)
def same_type(self, x, y):
if x is None or y is None: