summaryrefslogtreecommitdiff
path: root/fs/wrapfs/__init__.py
diff options
context:
space:
mode:
authorrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2010-06-20 02:14:35 +0000
committerrfkelly0 <rfkelly0@67cdc799-7952-0410-af00-57a81ceafa0f>2010-06-20 02:14:35 +0000
commit75f3ca55a2246be1408af2da3d3b219492016f76 (patch)
treee098e9b450668bf289546ba993e16e4445c68226 /fs/wrapfs/__init__.py
parent243cdd8788d2a21d4b172bb5e06685679ccc0802 (diff)
downloadpyfilesystem-75f3ca55a2246be1408af2da3d3b219492016f76.tar.gz
add the settimes() method to WrapFS
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@369 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/wrapfs/__init__.py')
-rw-r--r--fs/wrapfs/__init__.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/wrapfs/__init__.py b/fs/wrapfs/__init__.py
index 76c85b6..a1b9758 100644
--- a/fs/wrapfs/__init__.py
+++ b/fs/wrapfs/__init__.py
@@ -180,6 +180,10 @@ class WrapFS(FS):
return self.wrapped_fs.getinfo(self._encode(path))
@rewrite_errors
+ def settimes(self, path, *args, **kwds):
+ return self.wrapped_fs.settimes(*args,**kwds)
+
+ @rewrite_errors
def desc(self, path):
return self.wrapped_fs.desc(self._encode(path))