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

Unified Diff: appengine/findit/lib/gitiles/commit_util.py

Issue 2432113002: [Findit] Add local_git_repository (Closed)
Patch Set: Rebase. Created 4 years, 1 month 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/lib/gitiles/commit_util.py
diff --git a/appengine/findit/lib/gitiles/commit_util.py b/appengine/findit/lib/gitiles/commit_util.py
index 790a6f796a45259a9e985d14aa3c860c5ca3c1e0..753cc9e92483d933b1c052afc2b1156cc49af2eb 100644
--- a/appengine/findit/lib/gitiles/commit_util.py
+++ b/appengine/findit/lib/gitiles/commit_util.py
@@ -2,7 +2,11 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import json
+import logging
import re
+import subprocess
+import urllib2
chanli 2016/11/08 01:56:20 You have these imports but you don't use them?
Sharu Jiang 2016/11/11 00:29:05 Oops, cleaned up.
CODE_REVIEW_URL_PATTERN = re.compile(
'^(?:Review URL|Review-Url): (.*\d+).*$', re.IGNORECASE)

Powered by Google App Engine
This is Rietveld 408576698