Chromium Code Reviews| 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 |