summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2008-05-13 17:24:54 +0200
committerGuido Guenther <agx@sigxcpu.org>2008-05-13 17:24:54 +0200
commit2c1c265e64405c952d1761c531dad590ffe73807 (patch)
treed0872542b6541eb9abfe5f97a3919070ee9e7fe3
parentb011d2e1ffb588cb9bad86941a8b13920a519f5e (diff)
avoid extra space before "(Closes: )"
-rwxr-xr-xgit-dch2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-dch b/git-dch
index 1d3843a4..6d055ce2 100755
--- a/git-dch
+++ b/git-dch
@@ -174,7 +174,7 @@ def parse_commit(repo, commit,meta, short):
break
if meta:
if bugs:
- closes = ' (Closes: %s)' % ', '.join(bugs)
+ closes = '(Closes: %s)' % ', '.join(bugs)
if thanks:
thanks = ' - thanks to %s' % thanks
msg += closes + thanks