summaryrefslogtreecommitdiff
path: root/gbp
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2015-01-22 21:37:43 +0100
committerGuido Günther <agx@sigxcpu.org>2015-01-22 22:40:09 +0100
commit644c97f37ce91d464988eddc5f60624a06ff8e73 (patch)
treed30dce7b94057fdb1fd9c1f366d27d9595622c31 /gbp
parent428e8957efc79f4db8dd62b131242dde89d5a72a (diff)
dch: Support Gbp-Dch: besides Git-Dch:
Diffstat (limited to 'gbp')
-rw-r--r--gbp/dch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/dch.py b/gbp/dch.py
index f983234..d6385ef 100644
--- a/gbp/dch.py
+++ b/gbp/dch.py
@@ -28,7 +28,7 @@ def extract_git_dch_cmds(lines, options):
commands = {}
other_lines = []
for line in lines:
- if line.startswith('Git-Dch: '):
+ if line.startswith('Git-Dch: ') or line.startswith('Gbp-Dch: '):
cmd = line.split(' ', 1)[1].strip().lower()
commands[cmd] = True
else: