Commit 4de31c2d by btimby

Oops, forgot the auto_mount parameter.

parent f98bbe2b
...@@ -196,7 +196,7 @@ class ArchiveMountFS(mountfs.MountFS): ...@@ -196,7 +196,7 @@ class ArchiveMountFS(mountfs.MountFS):
return False return False
return type(object) is mountfs.MountFS.DirMount return type(object) is mountfs.MountFS.DirMount
def _delegate(self, path): def _delegate(self, path, auto_mount=True):
if self.auto_mount and auto_mount: if self.auto_mount and auto_mount:
for ppath in recursepath(path)[1:]: for ppath in recursepath(path)[1:]:
if self.ismount(ppath): if self.ismount(ppath):
......
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