| Index: dashboard/dashboard/start_try_job.py
|
| diff --git a/dashboard/dashboard/start_try_job.py b/dashboard/dashboard/start_try_job.py
|
| index db116a4226f661fa96e10b4c705130f4b02c8ba3..77f41e94df178f1567e61833a355ef0d37489552 100644
|
| --- a/dashboard/dashboard/start_try_job.py
|
| +++ b/dashboard/dashboard/start_try_job.py
|
| @@ -393,7 +393,7 @@ def GuessBisectBot(master_name, bot_name):
|
| # Treat ChromiumPerfFyi (etc.) the same as ChromiumPerf.
|
| if master_name.startswith(master):
|
| for platform, bisect_bot in platform_bot_pairs:
|
| - if platform in bot_name:
|
| + if platform.lower() in bot_name:
|
| return bisect_bot
|
| # Nothing was found; log a warning and return a fall-back name.
|
| logging.warning('No bisect bot for %s/%s.', master_name, bot_name)
|
|
|