aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2013-09-16 19:08:33 +0200
committerGuido Günther <agx@sigxcpu.org>2013-09-16 19:12:52 +0200
commitec7bd94142bea850325ef059999b08bf385577a4 (patch)
treec98d8d8ef25eef9a726fa7ed22af86409eaaab00
parent8441bba3c74a190abb8869168e200accd9e2c822 (diff)
pq: print which patch failed to apply
-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 68850787..70aabf52 100755
--- a/gbp/scripts/pq.py
+++ b/gbp/scripts/pq.py
@@ -151,6 +151,7 @@ def import_quilt_patches(repo, branch, series, tries, force):
try:
apply_and_commit_patch(repo, patch, maintainer, patch.topic)
except (GbpError, GitRepositoryError):
+ gbp.log.err("Failed to apply '%s'" % patch.path)
repo.set_branch(branch)
repo.delete_branch(pq_branch)
break