Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Unified Diff: git_cl.py

Issue 1065803002: Show issue owner info in 'git cl status' (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git_cl.py
diff --git a/git_cl.py b/git_cl.py
index 6470575fd188246b74f42294f07e88234d75a021..53ca881fd3ed507184c7598e5fdd9b3dd71ecfc0 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -1466,6 +1466,8 @@ def CMDstatus(parser, args):
print cl.GetBranch()
print 'Issue number: %s (%s)' % (cl.GetIssue(), cl.GetIssueURL())
if not options.fast:
+ print 'Issue owner: %s <%s>' % (cl.GetIssueProperties()['owner'],
+ cl.GetIssueProperties()['owner_email'])
print 'Issue description:'
print cl.GetDescription(pretty=True)
return 0
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698