Chromium Code Reviews| Index: tools/auto_bisect/bisect_printer.py |
| diff --git a/tools/auto_bisect/bisect_printer.py b/tools/auto_bisect/bisect_printer.py |
| index f23d662d495b90a67e33fc7e702f3ad1168ff853..645995cfddf663d596b2309454553a535ba3d255 100644 |
| --- a/tools/auto_bisect/bisect_printer.py |
| +++ b/tools/auto_bisect/bisect_printer.py |
| @@ -124,14 +124,14 @@ class BisectPrinter(object): |
| last_broken_rev, 100, final_step=False) |
| def _PrintAbortResults(self, abort_reason): |
| - |
| if self.opts.output_buildbot_annotations: |
| bisect_utils.OutputAnnotationStepStart('Results') |
| print ABORT_REASON_TEMPLATE % { |
| 'abort_reason': abort_reason, |
| 'bug_id': self.opts.bug_id or 'NOT SPECIFIED', |
| 'command': self.opts.command, |
| - 'metric': '/'.join(self.opts.metric), |
| + 'metric': ('/'.join(self.opts.metric) |
| + if self.opts.metric else 'NOT SPECIFIED'), |
|
qyearsley
2015/06/23 20:47:45
This change could also potentially go in a separat
prasadv
2015/06/23 21:37:48
I think this should be a part of this CL itself
|
| 'good_revision': self.opts.good_revision, |
| 'bad_revision': self.opts.bad_revision, |
| } |