summaryrefslogtreecommitdiff
path: root/fs/mountfs.py
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2011-09-10 09:15:37 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2011-09-10 09:15:37 +0000
commit8200800c1160a5d6acde0080fc0f89cf9463bb5b (patch)
tree7cce71f030373d98b3cbb40def3d16eeb8d7ec95 /fs/mountfs.py
parent19a25b721353cc4fc2ed7adcbdb1709dc83b621d (diff)
downloadpyfilesystem-8200800c1160a5d6acde0080fc0f89cf9463bb5b.tar.gz
Fixed a circular reference issue
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@719 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/mountfs.py')
-rw-r--r--fs/mountfs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/mountfs.py b/fs/mountfs.py
index ee6e615..03e0531 100644
--- a/fs/mountfs.py
+++ b/fs/mountfs.py
@@ -19,7 +19,7 @@ For example, lets say we have two filesystems containing config files and resour
We can combine these filesystems in to a single filesystem with the following code::
from fs.mountfs import MountFS
- combined_fs = MountFS
+ combined_fs = MountFS()
combined_fs.mountdir('config', config_fs)
combined_fs.mountdir('resources', resources_fs)