aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2014-12-24 09:25:30 +0100
committerGuido Günther <agx@sigxcpu.org>2014-12-28 13:02:22 +0100
commit578e394e3933fbae30d7185572317b63188ffbc0 (patch)
treebf127a437bbd180e98f2885d906dcccda6f37030
parent7df4d8cf8897474e6d7e897c8b273b55c13b1d7a (diff)
pq: print which patch got just applied
-rw-r--r--gbp/scripts/common/pq.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/gbp/scripts/common/pq.py b/gbp/scripts/common/pq.py
index f7bae233..459afb9b 100644
--- a/gbp/scripts/common/pq.py
+++ b/gbp/scripts/common/pq.py
@@ -265,6 +265,7 @@ def switch_to_pq_branch(repo, branch):
def apply_single_patch(repo, branch, patch, fallback_author, topic=None):
switch_to_pq_branch(repo, branch)
apply_and_commit_patch(repo, patch, fallback_author, topic)
+ gbp.log.info("Applied %s" % os.path.basename(patch.path))
def apply_and_commit_patch(repo, patch, fallback_author, topic=None):