diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-11-18 04:17:25 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-11-18 04:17:25 -0500 |
commit | 150cae1d1f20088823d7d5742b0d9368ae18fc7b (patch) | |
tree | 2a950e1bfa276bb73d97ede25cfc6d76ba07b0be | |
parent | 9db0bec7922d9935d926192d0b6ac4590d024d76 (diff) | |
download | kutter-150cae1d1f20088823d7d5742b0d9368ae18fc7b.tar.gz kutter-150cae1d1f20088823d7d5742b0d9368ae18fc7b.tar.xz kutter-150cae1d1f20088823d7d5742b0d9368ae18fc7b.zip |
buildcommands: Remove unnecessary spaces from data dictionary
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | scripts/buildcommands.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |