Signed-off-by: Catalin Marinas <catalin.marinas@xxxxxxxxx> --- stgit/lib/transaction.py | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/stgit/lib/transaction.py b/stgit/lib/transaction.py index 582ee72..13323dd 100644 --- a/stgit/lib/transaction.py +++ b/stgit/lib/transaction.py @@ -390,6 +390,7 @@ class StackTransaction(object): def check_merged(self, patches): """Return a subset of patches already merged.""" + out.start('Checking for patches merged upstream') merged = [] if self.temp_index_tree != self.stack.head.data.tree: self.temp_index.read_tree(self.stack.head.data.tree) @@ -408,4 +409,5 @@ class StackTransaction(object): self.temp_index_tree = None except git.MergeException: pass + out.done('%d found' % len(merged)) return merged -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html