From 34e85f7fe5417caea9d536a0b065f76df9b80507 Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Wed, 4 Sep 2013 15:53:37 +0300 Subject: [PATCH] pq: listen to 'Gbp-Pq:' commands, too Signed-off-by: Markus Lehtonen --- gbp/scripts/pq.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gbp/scripts/pq.py b/gbp/scripts/pq.py index f5618ce..1a15f10 100755 --- a/gbp/scripts/pq.py +++ b/gbp/scripts/pq.py @@ -55,6 +55,7 @@ def generate_patches(repo, start, end, outdir, options): for commit in rev_list: info = repo.get_commit_info(commit) cmds = parse_gbp_commands(info, 'gbp', ('ignore'), None) + cmds.update(parse_gbp_commands(info, 'gbp-pq', ('ignore'), None)) if not 'ignore' in cmds: format_patch(outdir, repo, info, patches, options.patch_numbers, topic_regex=topic_regex) -- 2.7.4