Chromium Code Reviews| Index: appengine/findit/common/blame.py |
| diff --git a/appengine/findit/common/blame.py b/appengine/findit/common/blame.py |
| index a44aa88107a9ed77f880dc32d60843018dbd54e7..60fc6759017f837ebc935de1f59b09f75e441bdd 100644 |
| --- a/appengine/findit/common/blame.py |
| +++ b/appengine/findit/common/blame.py |
| @@ -6,7 +6,7 @@ |
| class Region(object): |
| """A region of some (unspecified) file at a (known) revision.""" |
| def __init__(self, start, count, revision, |
| - author_name, author_email, author_time): |
| + author_name=None, author_email=None, author_time=None): |
|
stgao
2016/10/25 23:01:33
why default to None? An't they required? not avail
Sharu Jiang
2016/10/26 06:13:37
They are available for local checkout. This is jus
|
| self.start = start |
| self.count = count |
| self.revision = revision |