Index: tools/auto_bisect/bisect_printer.py |
diff --git a/tools/auto_bisect/bisect_printer.py b/tools/auto_bisect/bisect_printer.py |
index 27866913c23c8fb66a14151e9116beb20eb40526..13adf153bc1b08b35c9a45ae37d2a60c0cab6650 100644 |
--- a/tools/auto_bisect/bisect_printer.py |
+++ b/tools/auto_bisect/bisect_printer.py |
@@ -64,7 +64,7 @@ To run locally: |
REPRO_STEPS_TRYJOB = """ |
To reproduce on a performance try bot: |
1. Edit run-perf-test.cfg |
- 2. $ git try -b <bot> --svn_repo='svn://svn.chromium.org/chrome-try/try-perf' |
+ 2. $ git try -b bot-name --svn_repo='svn://svn.chromium.org/chrome-try/try-perf' |
prasadv
2015/04/27 17:11:35
Getting presubmit error, please fix this
|
Notes: |
a) Follow the in-file instructions in run-perf-test.cfg. |
@@ -81,7 +81,7 @@ https://sites.google.com/a/chromium.org/dev/developers/performance-try-bots""" |
REPRO_STEPS_TRYJOB_TELEMETRY = """ |
To reproduce on a performance try bot: |
%(command)s |
-(Where <bot-name> comes from tools/perf/run_benchmark --browser=list) |
+(Where bot-name comes from tools/perf/run_benchmark --browser=list) |
For more details please visit |
https://sites.google.com/a/chromium.org/dev/developers/performance-try-bots |
@@ -343,7 +343,7 @@ class BisectPrinter(object): |
print REPRO_STEPS_LOCAL |
if bisect_utils.IsTelemetryCommand(self.opts.command): |
telemetry_command = re.sub(r'--browser=[^\s]+', |
- '--browser=<bot-name>', |
+ '--browser=bot-name', |
command) |
print REPRO_STEPS_TRYJOB_TELEMETRY % {'command': telemetry_command} |
else: |