summaryrefslogtreecommitdiffstats
path: root/project.py
diff options
context:
space:
mode:
Diffstat (limited to 'project.py')
-rw-r--r--project.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/project.py b/project.py
index d9591c40..2b4a4f95 100644
--- a/project.py
+++ b/project.py
@@ -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
92class StatusColoring(Coloring): 96class StatusColoring(Coloring):
93 def __init__(self, config): 97 def __init__(self, config):