aboutsummaryrefslogtreecommitdiff
path: root/app/utils/bisect
diff options
context:
space:
mode:
authorMilo Casagrande <milo.casagrande@linaro.org>2015-01-14 09:34:03 +0100
committerMilo Casagrande <milo.casagrande@linaro.org>2015-01-14 09:34:03 +0100
commit70427bd2c5ba1243d85d5f6d44c536193bbdf8d1 (patch)
tree5c833400ef69c9ffb19869703713420279fd849f /app/utils/bisect
parent71457d3415775afe0577e652f5891a8199ae8543 (diff)
Fix json indent and spacing.
Change-Id: Ie448038b3687a0c05197226ff4520921a1539ee1
Diffstat (limited to 'app/utils/bisect')
-rw-r--r--app/utils/bisect/__init__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/utils/bisect/__init__.py b/app/utils/bisect/__init__.py
index a31b18b..c3c8595 100644
--- a/app/utils/bisect/__init__.py
+++ b/app/utils/bisect/__init__.py
@@ -279,7 +279,8 @@ def execute_boot_bisection(doc_id, db_options, fields=None):
json.dumps(
bisect_doc,
default=bson.json_util.default,
- ensure_ascii=False
+ ensure_ascii=False,
+ separators=(",", ":")
)
)
]
@@ -443,7 +444,8 @@ def execute_defconfig_bisection(doc_id, db_options, fields=None):
json.dumps(
bisect_doc,
default=bson.json_util.default,
- ensure_ascii=False
+ ensure_ascii=False,
+ separators=(",", ":")
)
)
]