summaryrefslogtreecommitdiffstats
path: root/tools/auto_bisect/bisect_printer.py
diff options
context:
space:
mode:
authorprasadv <prasadv@chromium.org>2014-11-14 09:42:11 -0800
committerCommit bot <commit-bot@chromium.org>2014-11-14 17:43:17 +0000
commitb025f39f3abea987045fd9165adc1f2cf0dabd2a (patch)
treec68340a29e9d8a13de604f89b1b7cc31ecdc7060 /tools/auto_bisect/bisect_printer.py
parent4d0853d835f30009c546acda54782ed63bea9502 (diff)
downloadchromium_src-b025f39f3abea987045fd9165adc1f2cf0dabd2a.zip
chromium_src-b025f39f3abea987045fd9165adc1f2cf0dabd2a.tar.gz
chromium_src-b025f39f3abea987045fd9165adc1f2cf0dabd2a.tar.bz2
Fix formattting error while printing other bisect regressions.
BUG= NOTRY=true Review URL: https://codereview.chromium.org/729533002 Cr-Commit-Position: refs/heads/master@{#304230}
Diffstat (limited to 'tools/auto_bisect/bisect_printer.py')
-rw-r--r--tools/auto_bisect/bisect_printer.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/auto_bisect/bisect_printer.py b/tools/auto_bisect/bisect_printer.py
index eb77dde..4ff6dc9 100644
--- a/tools/auto_bisect/bisect_printer.py
+++ b/tools/auto_bisect/bisect_printer.py
@@ -344,7 +344,8 @@ class BisectPrinter(object):
current_rev_state, prev_rev_state, confidence = regression
self._PrintTableRow(
[8, 70, 10],
- [current_rev_state.depot, current_rev_state.revision, confidence])
+ [current_rev_state.depot, current_rev_state.revision,
+ '%d%%' % confidence])
self._PrintTableRow(
[8, 70], [prev_rev_state.depot, prev_rev_state.revision])
print