diff options
Diffstat (limited to 'project.py')
-rw-r--r-- | project.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -88,6 +88,10 @@ class ReviewableBranch(object): | |||
88 | commit = self.project.bare_git.rev_parse(R_HEADS + self.name) | 88 | commit = self.project.bare_git.rev_parse(R_HEADS + self.name) |
89 | return 'http://%s/r/%s' % (me.remote.review, commit[0:12]) | 89 | return 'http://%s/r/%s' % (me.remote.review, commit[0:12]) |
90 | 90 | ||
91 | @property | ||
92 | def owner_email(self): | ||
93 | return self.project.UserEmail | ||
94 | |||
91 | 95 | ||
92 | class StatusColoring(Coloring): | 96 | class StatusColoring(Coloring): |
93 | def __init__(self, config): | 97 | def __init__(self, config): |