Commit 57f82b67 by willmcgugan

fuse fix issue 105

parent a7309d6e
...@@ -232,7 +232,7 @@ class FSOperations(Operations): ...@@ -232,7 +232,7 @@ class FSOperations(Operations):
def mkdir(self, path, mode): def mkdir(self, path, mode):
path = path.decode(NATIVE_ENCODING) path = path.decode(NATIVE_ENCODING)
try: try:
self.fs.makedir(path,mode) self.fs.makedir(path, recursive=True)
except TypeError: except TypeError:
self.fs.makedir(path) self.fs.makedir(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