From 7d9fba5a4118d2aec8c25712600a2d0c2bd3f512 Mon Sep 17 00:00:00 2001 From: Marian Beermann Date: Tue, 9 Aug 2016 21:20:13 +0200 Subject: [PATCH] ArchiveRecreater.copy_items: progress from target instead of source (it produces the same output, just less confusing) --- src/borg/archive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/borg/archive.py b/src/borg/archive.py index a18768668..a3eb409f0 100644 --- a/src/borg/archive.py +++ b/src/borg/archive.py @@ -1573,7 +1573,7 @@ class ArchiveRecreater: target_archive.stats.nfiles += 1 target_archive.add_item(item) if self.progress: - source_archive.stats.show_progress(final=True) # XXX target_archive.stats? + target_archive.stats.show_progress(final=True) return item def can_resume(self, archive, old_target, target_name):