Commit 2399a7c9 by rfkelly0

WrapFS: add getpathurl() method

parent a3ef0b45
...@@ -122,6 +122,10 @@ class WrapFS(FS): ...@@ -122,6 +122,10 @@ class WrapFS(FS):
return self.wrapped_fs.getsyspath(self._encode(path),allow_none) return self.wrapped_fs.getsyspath(self._encode(path),allow_none)
@rewrite_errors @rewrite_errors
def getpathurl(self, path, allow_none=False):
return self.wrapped_fs.getpathurl(self._encode(path),allow_none)
@rewrite_errors
def hassyspath(self, path): def hassyspath(self, path):
return self.wrapped_fs.hassyspath(self._encode(path)) return self.wrapped_fs.hassyspath(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