From 9a70e885f04363cd97cb39b3d6fc6ef0ab47139a Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Sat, 12 Mar 2016 11:30:44 +0100 Subject: [PATCH] remove unnecessary paranthesis --- buildtimetrend/trend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildtimetrend/trend.py b/buildtimetrend/trend.py index af97497..611ccd1 100644 --- a/buildtimetrend/trend.py +++ b/buildtimetrend/trend.py @@ -62,7 +62,7 @@ def gather_data(self, result_file): job_id = build_xml.get('job') if job_id is None and build_id is None: - build_name = "#{0:d}".format((index + 1)) + build_name = "#{0:d}".format(index + 1) elif job_id is not None: build_name = job_id else: