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
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ class Archiver(object):
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)