From 4ca934ffb079017264689bebe15f413fc90b974b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sun, 1 Apr 2018 05:09:03 +0200 Subject: [PATCH] Json --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 428214f..fa445fb 100644 --- a/README.md +++ b/README.md @@ -453,7 +453,7 @@ def read_json_file(filename): ```python def write_to_json_file(filename, an_object): with open(filename, 'w', encoding='utf-8') as file: - json.dump(an_object, file, ensure_ascii=True, indent=None) + json.dump(an_object, file, ensure_ascii=False, indent=2) ``` SQLite