aboutsummaryrefslogtreecommitdiffhomepage
path: root/git-dch
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2010-11-25 11:55:24 +0100
committerGuido Günther <agx@sigxcpu.org>2010-11-25 11:59:43 +0100
commit3e0d66390a38809668afca22886943fe3b713550 (patch)
tree2fdfcc5feb43588573b962a29f8e6c5256bb50d4 /git-dch
parent1224e913f0c877ee6ce3483d6e4e976711929dd1 (diff)
Also allow for 'issue' as bugnumber prefix
as used in Grml.
Diffstat (limited to 'git-dch')
-rwxr-xr-xgit-dch2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-dch b/git-dch
index ceed19fe..ee8d2837 100755
--- a/git-dch
+++ b/git-dch
@@ -34,7 +34,7 @@ from gbp.command_wrappers import (Command, CommandExecFailed)
snapshot_re = re.compile("\s*\*\* SNAPSHOT build @(?P<commit>[a-z0-9]+)\s+\*\*")
author_re = re.compile('Author: (?P<author>.*) <(?P<email>.*)>')
-bug_r = r'(?:bug)?\#?\s?\d+'
+bug_r = r'(?:bug|issue)?\#?\s?\d+'
bug_re = re.compile(bug_r, re.I)
def system(cmd):