diff options
Diffstat (limited to 'fs/osfs.py')
-rw-r--r-- | fs/osfs.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -194,7 +194,7 @@ class OSFS(FS): except IOError, e: raise OperationFailedError('delete extended attribute', path=path, details=e) - def xattrs(self, path): + def listxattrs(self, path): try: return xattr.xattr(self.getsyspath(path)).keys() except IOError, e: |