mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-09 17:00:11 -04:00
import-tar: when printing the path, use the already normalized item.path.
This commit is contained in:
parent
74a6525c88
commit
91ed406ccf
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue