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

Unified Diff: git_cl.py

Issue 17763004: Fixes depot_tools presubmit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Back to patchset 2 Created 7 years, 6 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 ce91817a0ad3728180370b3f63bbd136025a26ef..4dfb609eb42ad9adda546b18fb2c00a6262af0f2 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -1054,7 +1054,7 @@ def CMDstatus(parser, args):
alignment = max(5, max(len(b) for b in branches))
print 'Branches associated with reviews:'
for branch in sorted(branches):
- print " %*s: %s" % (alignment, branch, branches[branch] or '')
+ print " %*s: %s" % (alignment, branch, branches[branch])
cl = Changelist()
if options.field:
« 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