Commit 1a8f4d8b by rfkelly0

add the settimes() method to WrapFS

parent cca1582b
......@@ -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))
......
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