summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2008-09-16 13:14:45 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2008-09-16 13:14:45 +0000
commitd08710dae82df61d12a6b9f277d97faa4ed0a34c (patch)
tree0a4a7c3f376023014622a52b8c3c8f589ceccfe0
parent857426a3cc9c2b2b53837d62faca7a54905ae359 (diff)
downloadpyfilesystem-d08710dae82df61d12a6b9f277d97faa4ed0a34c.tar.gz
Added thread syncronize to mountfs
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@74 67cdc799-7952-0410-af00-57a81ceafa0f
-rw-r--r--fs/mountfs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/mountfs.py b/fs/mountfs.py
index 4c07d33..4bbcba6 100644
--- a/fs/mountfs.py
+++ b/fs/mountfs.py
@@ -21,8 +21,8 @@ class MountFS(FS):
return {}
self.info_callable = info_callable or no_info_callable
- def __init__(self):
- FS.__init__(self, thread_syncronize=True)
+ def __init__(self, thread_syncronize=True):
+ FS.__init__(self, thread_syncronize=thread_syncronize)
self.mount_tree = ObjectTree()
def __str__(self):