Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: tools/auto_bisect/fetch_build.py

Issue 1618093009: Fix import path (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/auto_bisect/fetch_build.py
diff --git a/tools/auto_bisect/fetch_build.py b/tools/auto_bisect/fetch_build.py
index 565c2e764626b5579a9c1debc800a7bb5376ed99..27cd66866b822dbf16a56439d64e7d54d20b0322 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698