diff options
author | Owen W. Taylor <otaylor@fishsoup.net> | 2012-03-01 15:35:57 -0500 |
---|---|---|
committer | Owen W. Taylor <otaylor@fishsoup.net> | 2012-03-01 15:35:57 -0500 |
commit | be420c97d3918216f49eb91f396bfc2795de5d59 (patch) | |
tree | 390ae26502582253a3213951080b553959a97374 | |
parent | e1ad70be73ebf563735dd854075169bd10a9360b (diff) | |
download | git-bz-be420c97d3918216f49eb91f396bfc2795de5d59.tar.gz |
apply: Fix addition of 'need commit message' string
Fix a double addition of the commit message, and add a comment
pointing out that the exact string is checked by git.gnome.org.
-rwxr-xr-x | git-bz | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1658,7 +1658,8 @@ From: %s <%s> Date: %s Subject: %s """ % (name, email, patch.date, patch.description) - patch.data = headers + "\n\nFIXME: need commit message\n---\n" + patch.data + # The exact string 'FIXME: need commit message' is checked for by + # git.gnome.org commit hooks, so they need to be updated if it changes. patch.data = headers + """ FIXME: need commit message. |