Index: git_cl.py |
=================================================================== |
--- git_cl.py (revision 200820) |
+++ git_cl.py (working copy) |
@@ -1120,6 +1120,16 @@ |
return 0 |
+def CMDdescription(parser, args): |
+ """Brings up the editor for the current CL's description.""" |
M-A Ruel
2013/05/17 18:46:00
The docstrings for commands start with a lower cas
Robert Sesek
2013/05/17 19:02:18
Done.
|
+ cl = Changelist() |
+ if not cl.GetIssue(): |
+ DieWithError('This branch has no associated changelist.') |
+ description = ChangeDescription(cl.GetDescription()) |
+ description.prompt() |
+ cl.UpdateDescription(description.description) |
M-A Ruel
2013/05/17 18:46:00
return 0
Robert Sesek
2013/05/17 19:02:18
Done.
|
+ |
+ |
def CreateDescriptionFromLog(args): |
"""Pulls out the commit log to use as a base for the CL description.""" |
log_args = [] |