summaryrefslogtreecommitdiff
path: root/fs/remote.py
diff options
context:
space:
mode:
authorrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2011-01-05 08:15:24 +0000
committerrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2011-01-05 08:15:24 +0000
commit336bc7b2887afc8e72fd9683075603e3e4b1c568 (patch)
tree49b408b2c518ea93af03fdc2afd4ec589541727d /fs/remote.py
parent32833e10f9d076b92b603330f5ac140e6d1cd90d (diff)
downloadpyfilesystem-336bc7b2887afc8e72fd9683075603e3e4b1c568.tar.gz
allow listdir/ilistdir to take non-keyword args
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@603 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/remote.py')
-rw-r--r--fs/remote.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/remote.py b/fs/remote.py
index a008c9b..56a9350 100644
--- a/fs/remote.py
+++ b/fs/remote.py
@@ -493,12 +493,12 @@ class CacheFS(WrapFS):
return super(CacheFS,self).isfile(path)
@_cached_method
- def listdir(self,path="",**kwds):
- return super(CacheFS,self).listdir(path,**kwds)
+ def listdir(self,path="",*args,**kwds):
+ return super(CacheFS,self).listdir(path,*args,**kwds)
@_cached_method
- def listdirinfo(self,path="",**kwds):
- return super(CacheFS,self).listdirinfo(path,**kwds)
+ def listdirinfo(self,path="",*args,**kwds):
+ return super(CacheFS,self).listdirinfo(path,*args,**kwds)
@_cached_method
def getinfo(self,path):