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() |