summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fs/mountfs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/mountfs.py b/fs/mountfs.py
index 18f6f88..9062bed 100644
--- a/fs/mountfs.py
+++ b/fs/mountfs.py
@@ -414,7 +414,7 @@ class MountFS(FS):
:param info_callable: A callable that returns a dictionary with information regarding the file-like object
"""
- self.mount_tree[path] = MountFS.FileMount(path, callable, info_callable)
+ self.mount_tree[path] = MountFS.FileMount(path, open_callable, info_callable)
@synchronize
def unmount(self, path):