summaryrefslogtreecommitdiff
path: root/fs/memoryfs.py
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2010-01-02 21:47:12 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2010-01-02 21:47:12 +0000
commit2cbe6c933ced080db0f48dcc5ebf9aba25397c9e (patch)
tree6419f1f0ac64d382f893f1fdbfe1771f26327d27 /fs/memoryfs.py
parentf02e1aeb4104cdf05628c7777c1879b4258be3f9 (diff)
downloadpyfilesystem-2cbe6c933ced080db0f48dcc5ebf9aba25397c9e.tar.gz
More doc tweaks
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@312 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/memoryfs.py')
-rw-r--r--fs/memoryfs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/memoryfs.py b/fs/memoryfs.py
index 36d997e..a88d8f7 100644
--- a/fs/memoryfs.py
+++ b/fs/memoryfs.py
@@ -180,7 +180,7 @@ class MemoryFS(FS):
return self.dir_entry_factory(*args, **kwargs)
def __init__(self, file_factory=None):
- FS.__init__(self, thread_synchronize=_thread_syncronize_default)
+ super(FS, self).__init__(thread_synchronize=_thread_syncronize_default)
self.dir_entry_factory = DirEntry
self.file_factory = file_factory or MemoryFile