summaryrefslogtreecommitdiff
path: root/fs/remote.py
diff options
context:
space:
mode:
authorrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2009-11-16 08:00:01 +0000
committerrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2009-11-16 08:00:01 +0000
commitb6ac3cb0a5a04ed3d23dc7e5e95ed13f014f29a7 (patch)
treedc05f0ed3987bc1df0585f78de0d09307284b348 /fs/remote.py
parentd9a5153d1e9f0113f17c04b25e43d496071497b0 (diff)
downloadpyfilesystem-b6ac3cb0a5a04ed3d23dc7e5e95ed13f014f29a7.tar.gz
include default argument for getxattr
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@268 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/remote.py')
-rw-r--r--fs/remote.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/remote.py b/fs/remote.py
index c21f8b3..dac5a3b 100644
--- a/fs/remote.py
+++ b/fs/remote.py
@@ -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):