From 81ab18761aea0d8077a280d4b91af10d93246cf3 Mon Sep 17 00:00:00 2001 From: Bobby Holley Date: Sat, 14 Aug 2010 19:26:20 -0400 Subject: Use the actual description entered by the user, rather than unconditionally using commit.subject By mistake, the code was discarding the description after parsing it out from the edit buffer. https://bugzilla.gnome.org/show_bug.cgi?id=628455 --- git-bz | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-bz b/git-bz index 44482cf..b51bb65 100755 --- a/git-bz +++ b/git-bz @@ -1528,7 +1528,7 @@ def attach_commits(bug, commits, include_comments=True, edit_comments=False, sta else: description = commit.subject obsoletes = [] - bug.create_patch(commit.subject, body, filename, patch, obsoletes=obsoletes, status=status) + bug.create_patch(description, body, filename, patch, obsoletes=obsoletes, status=status) def do_attach(*args): if len(args) == 1: -- cgit v1.2.3