From 91ed406ccfc8f142bf5d32083d91474c2f04a478 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Fri, 27 Jun 2025 14:31:57 +0200 Subject: [PATCH] import-tar: when printing the path, use the already normalized item.path. --- 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 0ceb548e7..3e0f0f871 100644 --- a/src/borg/archive.py +++ b/src/borg/archive.py @@ -1523,7 +1523,7 @@ class TarfileObjectProcessors: def process_file(self, *, tarinfo, status, type, tar): with self.create_helper(tarinfo, status, type) as (item, status): - self.print_file_status(status, tarinfo.name) + self.print_file_status(status, item.path) status = None # we already printed the status fd = tar.extractfile(tarinfo) self.process_file_chunks(item, self.cache, self.stats, self.show_progress,