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

Unified Diff: appengine/findit/common/change_log.py

Issue 2435863003: [Findit] Add local git parsers. (Closed)
Patch Set: Fix nits. 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/common/change_log.py
diff --git a/appengine/findit/common/change_log.py b/appengine/findit/common/change_log.py
index c56c8ec6e20267b6a147e6fc598f6a70cebfe938..ff381165bcf40b42ba1ed660962e11de838d137e 100644
--- a/appengine/findit/common/change_log.py
+++ b/appengine/findit/common/change_log.py
@@ -25,10 +25,11 @@ class FileChangeInfo(object):
class ChangeLog(object):
"""Represents the change log of a revision."""
- def __init__(self, author_name, author_email, author_time, committer_name,
- committer_email, committer_time, revision, commit_position,
- message, touched_files, commit_url, code_review_url=None,
- reverted_revision=None):
+ def __init__(self, author_name, author_email, author_time,
+ committer_name, committer_email, committer_time,
+ revision, commit_position, message,
+ touched_files, commit_url, code_review_url,
+ reverted_revision):
stgao 2016/10/25 23:01:33 Is code-review-url and reverted_revision always av
Sharu Jiang 2016/10/26 06:13:38 Oops, shouldn't delete all of them.
self.author_name = author_name
self.author_email = author_email
self.author_time = author_time

Powered by Google App Engine
This is Rietveld 408576698