diff --git a/git_cl.py b/git_cl.py index 1cd591d7f..8aed4b998 100755 --- a/git_cl.py +++ b/git_cl.py @@ -562,7 +562,10 @@ or verify this branch is set up to track another (via the --track argument to return output def CloseIssue(self): - return self.RpcServer().close_issue(int(self.GetIssue())) + """Updates the description and closes the issue.""" + issue = int(self.GetIssue()) + self.RpcServer().update_description(issue, self.description) + return self.RpcServer().close_issue(issue) def SetFlag(self, flag, value): """Patchset must match."""