diff options
| author | chrisphan <chrisphan@chromium.org> | 2016-01-22 16:05:04 -0800 |
|---|---|---|
| committer | Commit bot <commit-bot@chromium.org> | 2016-01-23 00:05:58 +0000 |
| commit | f73ced5925fc94a82bf8bdf621aa60e6c041ec0b (patch) | |
| tree | 209f6a213b89318f93ab85dc2b3731eea4cc2ec8 | |
| parent | fcc1ca3fa75e3da7c49427660b451970569c0b8b (diff) | |
| download | chromium_src-f73ced5925fc94a82bf8bdf621aa60e6c041ec0b.zip chromium_src-f73ced5925fc94a82bf8bdf621aa60e6c041ec0b.tar.gz chromium_src-f73ced5925fc94a82bf8bdf621aa60e6c041ec0b.tar.bz2 | |
Fix import path.
Review URL: https://codereview.chromium.org/1618093009
Cr-Commit-Position: refs/heads/master@{#371089}
| -rw-r--r-- | tools/auto_bisect/fetch_build.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/auto_bisect/fetch_build.py b/tools/auto_bisect/fetch_build.py index 565c2e7..27cd668 100644 --- a/tools/auto_bisect/fetch_build.py +++ b/tools/auto_bisect/fetch_build.py @@ -23,7 +23,8 @@ import sys import zipfile _CATAPULT_BASE_PATH = os.path.abspath(os.path.join( - __file__, '..', '..', 'third_party', 'catapult', 'catapult_base')) + os.path.dirname(__file__), '..', '..', 'third_party', 'catapult', + 'catapult_base')) if _CATAPULT_BASE_PATH not in sys.path: sys.path.insert(1, _CATAPULT_BASE_PATH) from catapult_base import cloud_storage |
