mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-25 01:06:50 +00:00
Fix extract command verbose output
This commit is contained in:
parent
b8e9cf171d
commit
6665275db1
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ def do_extract(self, args):
|
|||
for item in archive.items:
|
||||
if exclude_path(item['path'], args.patterns):
|
||||
continue
|
||||
self.print_verbose(item['path'])
|
||||
self.print_verbose(item['path'].decode('utf-8'))
|
||||
archive.extract_item(item, args.dest)
|
||||
if stat.S_ISDIR(item['mode']):
|
||||
dirs.append(item)
|
||||
|
|
Loading…
Reference in a new issue