Fixed a bug with the JSON Driver (#1953)

Administrative merge: Travis CI failed due to docs issue, see #1957
This commit is contained in:
Kowlin
2018-07-25 02:18:54 +02:00
committed by GitHub
parent 05c389623c
commit a555eff2cc

View File

@@ -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: