summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgcode@loowis.durge.org <gcode@loowis.durge.org@67cdc799-7952-0410-af00-57a81ceafa0f>2013-03-17 02:07:13 +0000
committergcode@loowis.durge.org <gcode@loowis.durge.org@67cdc799-7952-0410-af00-57a81ceafa0f>2013-03-17 02:07:13 +0000
commit3ec2c7930077f56f9eddc043ecbcd022a172f10f (patch)
tree779354a3ecb2bbb12d07bbf9047c1cb80a7cc9ee
parentcd9367401b11631eba8f43f1067008ae75d0e3c9 (diff)
downloadpyfilesystem-3ec2c7930077f56f9eddc043ecbcd022a172f10f.tar.gz
Partially fixes Issue 148
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@847 67cdc799-7952-0410-af00-57a81ceafa0f
-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):