From 4ce2413e7c288b814e8378671be7291a31c83f85 Mon Sep 17 00:00:00 2001 From: an7s <an7s@git.zephyr-software.com> Date: Mon, 29 Jan 2018 18:26:38 +0000 Subject: [PATCH] Make python 3+ compatible Former-commit-id: 4dcb20c5d7c3b4c30c41c8b6c29bbd4a8b523346 --- tools/gather_stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/gather_stats.py b/tools/gather_stats.py index e6f9d3185..ec2973106 100755 --- a/tools/gather_stats.py +++ b/tools/gather_stats.py @@ -53,5 +53,5 @@ for log_file_path in sys.argv[1:]: stats[step_name][attribute_name] = attribute_value if stats: - print json.dumps(stats) + print (json.dumps(stats)) -- GitLab