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

Unified Diff: appengine/findit/model/base_suspected_cl.py

Issue 2480593002: [Predator] Move time_util from common/ to lib/, split code review related part to code_review_util (Closed)
Patch Set: Rebase and fix nits. 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
« no previous file with comments | « appengine/findit/lib/time_util.py ('k') | appengine/findit/model/base_triaged_model.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/model/base_suspected_cl.py
diff --git a/appengine/findit/model/base_suspected_cl.py b/appengine/findit/model/base_suspected_cl.py
index ea0c2a621e38ffe260684c1f64ae7972ccc5283d..019e25125b63986c9412a197a8e3e958ad4b55f6 100644
--- a/appengine/findit/model/base_suspected_cl.py
+++ b/appengine/findit/model/base_suspected_cl.py
@@ -4,7 +4,7 @@
from google.appengine.ext import ndb
-from common import time_util
+from lib import time_util
class BaseSuspectedCL(ndb.Model):
@@ -45,4 +45,4 @@ class BaseSuspectedCL(ndb.Model):
@classmethod
def Get(cls, repo_name, revision): # pragma: no cover
- return cls._CreateKey(repo_name, revision).get()
+ return cls._CreateKey(repo_name, revision).get()
« no previous file with comments | « appengine/findit/lib/time_util.py ('k') | appengine/findit/model/base_triaged_model.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698