From 7d168a38f12f5ccb81c67a7245b6a343a590e477 Mon Sep 17 00:00:00 2001 From: Administrator Date: Tue, 26 Sep 2023 09:56:08 +0300 Subject: [PATCH] ensure ascii --- configs/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/models.py b/configs/models.py index b53a78b..fdb7f3d 100644 --- a/configs/models.py +++ b/configs/models.py @@ -13,7 +13,7 @@ class Config(models.Model): @property def data_pretty(self): - return dumps(self.data, indent=4) + return dumps(self.data, indent=4, ensure_ascii=False) class Meta: indexes = [