Skip to content
This repository has been archived by the owner on Dec 11, 2022. It is now read-only.

Commit

Permalink
remove unnecessary paranthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
ruleant committed Mar 12, 2016
1 parent 33a4b19 commit 9a70e88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildtimetrend/trend.py
Expand Up @@ -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:
Expand Down

0 comments on commit 9a70e88

Please sign in to comment.