1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-25 09:19:31 +00:00

Fix extract command verbose output

This commit is contained in:
Jonas Borgström 2010-11-04 23:04:09 +01:00
parent b8e9cf171d
commit 6665275db1

View file

@ -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)