Commit 95719dd2 by rfkelly0

include default argument for getxattr

parent 19fbefd2
......@@ -427,8 +427,8 @@ class CacheFS(WrapFS):
return super(CacheFS,self).getsize(path)
@_cached_method
def getxattr(self,path,name):
return super(CacheFS,self).getxattr(path,name)
def getxattr(self,path,name,default=None):
return super(CacheFS,self).getxattr(path,name,default)
@_cached_method
def listxattrs(self,path):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment