summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2013-09-04 15:53:37 +0300
committerGuido Günther <agx@sigxcpu.org>2013-10-31 19:17:21 +0100
commit34e85f7fe5417caea9d536a0b065f76df9b80507 (patch)
treeacb4a5f41792f5d4ba2b857e3f98d93c03f2c175
parent3dccca6eb983512dfaca01df4ac758a2cc420388 (diff)
pq: listen to 'Gbp-Pq:' commands, too
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
-rwxr-xr-xgbp/scripts/pq.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/gbp/scripts/pq.py b/gbp/scripts/pq.py
index f5618ce8..1a15f10a 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)