summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Peres <martin.peres@linux.intel.com>2016-01-29 11:16:53 +0200
committerMartin Peres <martin.peres@linux.intel.com>2016-01-29 11:16:53 +0200
commit84302973390186eae77c71d8151e4491e8adc9e4 (patch)
tree949a65ea9eb36488a1c11fe6e060d9c45a921b21
parent70416012eb1c99a89dd80d852d9b0691e631114f (diff)
compare_reports: fix the margin as displayed by the tooltip
-rwxr-xr-xstats/compare_reports.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/stats/compare_reports.py b/stats/compare_reports.py
index 356d647..2f745bf 100755
--- a/stats/compare_reports.py
+++ b/stats/compare_reports.py
@@ -133,7 +133,7 @@ for log_folder in args.log_folder:
score_sum += average
count += 1
result.average = float("{0:.2f}".format(average))
- result.margin_str = float("{0:.3f}".format(result.margin()))
+ result.margin_str = float("{0:.2f}".format(result.margin() * 100))
# Compare to the target
if not result.benchmark.full_name in db["targets"]: