Browse Source

Ignore IOErrors from xattr module

Jonas Borgström 14 years ago
parent
commit
59e33ab29f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      darc/archive.py

+ 1 - 1
darc/archive.py

@@ -202,7 +202,7 @@ class Archive(object):
             for k, v in xattrs.items():
                 try:
                     xa.set(k, v)
-                except KeyError:
+                except (IOError, KeyError):
                     pass
         if have_lchmod:
             os.lchmod(path, item['mode'])