Chromium Code Reviews| Index: tools/bisect-manual-test.py |
| diff --git a/tools/bisect-manual-test.py b/tools/bisect-manual-test.py |
| index f07cc7b80931b7b810fe245bbc57ee2847e2d356..f8d95ed4caf4c154a2fe1e63b719e168db91facc 100755 |
| --- a/tools/bisect-manual-test.py |
| +++ b/tools/bisect-manual-test.py |
| @@ -11,7 +11,10 @@ Typically used as by the run-bisect-manual-test.py script. |
| import os |
| import sys |
| -sys.path.append(os.path.join(os.path.dirname(__file__), 'telemetry')) |
| +sys.path.insert(1, 'perf') |
|
aiolos (Not reviewing)
2016/01/15 00:33:04
Is there a reason you aren't using the full path h
eakuefner
2016/01/19 17:21:18
Done. I've also switched back to append here becau
|
| +from chrome_telemetry_build import chromium_config |
| +sys.path.insert(1, chromium_config.GetTelemetryDir()) |
| + |
| from telemetry.internal.browser import browser_finder |
| from telemetry.internal.browser import browser_options |