We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e197aa commit 52df4adCopy full SHA for 52df4ad
src/borg/xattr.py
@@ -86,7 +86,7 @@ def get_all(path, follow_symlinks=False):
86
# EINVAL: maybe xattr name is invalid or other issue, #6988
87
logger.warning("When getting extended attribute %s: %s", name.decode(errors="replace"), str(e))
88
except OSError as e:
89
- if e.errno in (errno.ENOTSUP, errno.EPERM):
+ if e.errno in (errno.ENOTSUP, errno.EOPNOTSUPP, errno.EPERM):
90
# if xattrs are not supported on the filesystem, we give up.
91
# EPERM might be raised by listxattr.
92
pass
0 commit comments