summaryrefslogtreecommitdiff
path: root/gbp/dch.py
diff options
context:
space:
mode:
Diffstat (limited to 'gbp/dch.py')
-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: