Index: appengine/findit/waterfall/identify_try_job_culprit_pipeline.py |
diff --git a/appengine/findit/waterfall/identify_try_job_culprit_pipeline.py b/appengine/findit/waterfall/identify_try_job_culprit_pipeline.py |
index 303211272cda6091271e46bd25d7d8ba5aab47f0..aa0a83462efcd0c7e9a91feb998d9bc10afe8ce5 100644 |
--- a/appengine/findit/waterfall/identify_try_job_culprit_pipeline.py |
+++ b/appengine/findit/waterfall/identify_try_job_culprit_pipeline.py |
@@ -8,7 +8,7 @@ import logging |
from google.appengine.ext import ndb |
-from common.git_repository import GitRepository |
+from lib.gitiles.gitiles_repository import GitilesRepository |
stgao
2016/10/28 18:21:00
order of import
wrengr
2016/10/28 19:24:49
Done.
|
from common.http_client_appengine import HttpClientAppengine as HttpClient |
from common.pipeline_wrapper import BasePipeline |
from common.waterfall import failure_type |
@@ -23,7 +23,7 @@ from waterfall.send_notification_for_culprit_pipeline import ( |
from waterfall import suspected_cl_util |
-GIT_REPO = GitRepository( |
+GIT_REPO = GitilesRepository( |
'https://chromium.googlesource.com/chromium/src.git', HttpClient()) |