diff options
-rw-r--r-- | project.py | 4 | ||||
-rw-r--r-- | subcmds/upload.py | 1 |
2 files changed, 5 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): |
diff --git a/subcmds/upload.py b/subcmds/upload.py index ad05050e..9018455f 100644 --- a/subcmds/upload.py +++ b/subcmds/upload.py | |||
@@ -158,6 +158,7 @@ changes in all projects listed in the manifest. | |||
158 | branch.project.relpath + '/', | 158 | branch.project.relpath + '/', |
159 | branch.name) | 159 | branch.name) |
160 | print >>sys.stderr, '%s' % branch.tip_url | 160 | print >>sys.stderr, '%s' % branch.tip_url |
161 | print >>sys.stderr, '(as %s)' % branch.owner_email | ||
161 | print >>sys.stderr, '' | 162 | print >>sys.stderr, '' |
162 | 163 | ||
163 | if have_errors: | 164 | if have_errors: |