1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2025-01-07 12:29:52 +00:00

Fix whitespace (but not sorting) issue in --dump-fallthru-info.

This commit is contained in:
Chris Pressey 2018-09-06 16:32:48 +01:00
parent 4bba75857f
commit 10062fe2fb
2 changed files with 19 additions and 19 deletions

View File

@ -68,7 +68,7 @@ def process_input_files(filenames, options):
return
if label:
sys.stdout.write("*** {}:\n".format(label))
sys.stdout.write(json.dumps(data, indent=4, sort_keys=True))
sys.stdout.write(json.dumps(data, indent=4, sort_keys=True, separators=(',', ':')))
sys.stdout.write("\n")
fa = FallthruAnalyzer(debug=options.debug)