From a555eff2cc4aa7969e3125ce582ccf139b0d5dbe Mon Sep 17 00:00:00 2001 From: Kowlin Date: Wed, 25 Jul 2018 02:18:54 +0200 Subject: [PATCH] Fixed a bug with the JSON Driver (#1953) Administrative merge: Travis CI failed due to docs issue, see #1957 --- redbot/core/json_io.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/redbot/core/json_io.py b/redbot/core/json_io.py index c2be5e939..af4489052 100644 --- a/redbot/core/json_io.py +++ b/redbot/core/json_io.py @@ -11,8 +11,8 @@ from pathlib import Path log = logging.getLogger("red") -PRETTY = {"indent": 4, "sort_keys": True, "separators": (",", " : ")} -MINIFIED = {"sort_keys": True, "separators": (",", ":")} +PRETTY = {"indent": 4, "sort_keys": False, "separators": (",", " : ")} +MINIFIED = {"sort_keys": False, "separators": (",", ":")} class JsonIO: