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

Unified Diff: appengine/findit/waterfall/pull_changelog_pipeline.py

Issue 2344443005: [Findit] Factoring the gitiles (etc) stuff out into its own directory (Closed)
Patch Set: reverted unintended change to an __init__ file Created 4 years, 2 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
Index: appengine/findit/waterfall/pull_changelog_pipeline.py
diff --git a/appengine/findit/waterfall/pull_changelog_pipeline.py b/appengine/findit/waterfall/pull_changelog_pipeline.py
index eb40fb2a0ca912e3d22ec3ad1b730f9daa55f507..0ea976b5ef03f631cae34d458e33b397051028cb 100644
--- a/appengine/findit/waterfall/pull_changelog_pipeline.py
+++ b/appengine/findit/waterfall/pull_changelog_pipeline.py
@@ -2,7 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-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 pipeline
from common.pipeline_wrapper import BasePipeline
@@ -12,7 +12,7 @@ class PullChangelogPipeline(BasePipeline):
"""A pipeline to pull change log of CLs."""
# TODO: for files in dependencies(blink, v8, skia, etc), use blame first.
- GIT_REPO = GitRepository(
+ GIT_REPO = GitilesRepository(
'https://chromium.googlesource.com/chromium/src.git', HttpClient())
# Arguments number differs from overridden method - pylint: disable=W0221

Powered by Google App Engine
This is Rietveld 408576698