From 150cae1d1f20088823d7d5742b0d9368ae18fc7b Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sun, 18 Nov 2018 04:17:25 -0500 Subject: [PATCH] buildcommands: Remove unnecessary spaces from data dictionary Signed-off-by: Kevin O'Connor --- scripts/buildcommands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/buildcommands.py b/scripts/buildcommands.py index 840637a2..09ecad70 100644 --- a/scripts/buildcommands.py +++ b/scripts/buildcommands.py @@ -409,7 +409,7 @@ class HandleIdentify: data = {} for h in Handlers: h.update_data_dictionary(data) - datadict = json.dumps(data) + datadict = json.dumps(data, separators=(',', ':')) # Write data dictionary if options.write_dictionary: