diff options
author | prasadv <prasadv@chromium.org> | 2014-11-14 09:42:11 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-11-14 17:43:17 +0000 |
commit | b025f39f3abea987045fd9165adc1f2cf0dabd2a (patch) | |
tree | c68340a29e9d8a13de604f89b1b7cc31ecdc7060 /tools/auto_bisect | |
parent | 4d0853d835f30009c546acda54782ed63bea9502 (diff) | |
download | chromium_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')
-rw-r--r-- | tools/auto_bisect/bisect_printer.py | 3 |
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 |