Add missing error handler in directory attr restore loop (2/2)

This commit is contained in:
Marian Beermann 2016-07-01 00:07:38 +02:00
parent e365d64718
commit 26bf500566
No known key found for this signature in database
GPG Key ID: 9B8450B91D1362C1
1 changed files with 5 additions and 1 deletions

View File

@ -372,7 +372,11 @@ class Archiver:
continue
if not args.dry_run:
while dirs and not item[b'path'].startswith(dirs[-1][b'path']):
archive.extract_item(dirs.pop(-1), stdout=stdout)
dir_item = dirs.pop(-1)
try:
archive.extract_item(dir_item, stdout=stdout)
except BackupOSError as e:
self.print_warning('%s: %s', remove_surrogates(dir_item[b'path']), e)
if output_list:
logger.info(remove_surrogates(orig_path))
try: