diff options
author | gcode@loowis.durge.org <gcode@loowis.durge.org@67cdc799-7952-0410-af00-57a81ceafa0f> | 2013-03-17 02:07:13 +0000 |
---|---|---|
committer | gcode@loowis.durge.org <gcode@loowis.durge.org@67cdc799-7952-0410-af00-57a81ceafa0f> | 2013-03-17 02:07:13 +0000 |
commit | 3ec2c7930077f56f9eddc043ecbcd022a172f10f (patch) | |
tree | 779354a3ecb2bbb12d07bbf9047c1cb80a7cc9ee /fs | |
parent | cd9367401b11631eba8f43f1067008ae75d0e3c9 (diff) | |
download | pyfilesystem-3ec2c7930077f56f9eddc043ecbcd022a172f10f.tar.gz |
Partially fixes Issue 148
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@847 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs')
-rw-r--r-- | fs/mountfs.py | 2 |
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): |