From 644c97f37ce91d464988eddc5f60624a06ff8e73 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Thu, 22 Jan 2015 21:37:43 +0100 Subject: dch: Support Gbp-Dch: besides Git-Dch: --- gbp/dch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gbp') 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: -- cgit v1.2.3