Browse Source

Fix extract command verbose output

Jonas Borgström 14 years ago
parent
commit
6665275db1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      darc/archiver.py

+ 1 - 1
darc/archiver.py

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