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

Unified Diff: git_cl.py

Issue 1053103002: Enable help generation for some git-cl subcommands (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 5 years, 9 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 039b35df17cdfb4c402730c3d233c057df27e4b0..87867340453dfb1c1ef568f88f308437a495739f 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -1569,6 +1569,7 @@ def CMDcomments(parser, args):
def CMDdescription(parser, args):
"""Brings up the editor for the current CL's description."""
+ parser.parse_args(args)
cl = Changelist()
if not cl.GetIssue():
DieWithError('This branch has no associated changelist.')
@@ -2897,6 +2898,7 @@ def CMDset_close(parser, args):
def CMDdiff(parser, args):
"""shows differences between local tree and last upload."""
+ parser.parse_args(args)
cl = Changelist()
issue = cl.GetIssue()
branch = cl.GetBranch()
« 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