summaryrefslogtreecommitdiff
path: root/fs/mountfs.py
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2010-11-07 17:18:50 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2010-11-07 17:18:50 +0000
commitc73ab0891377d813ff459e2f9d7b953a3817f85f (patch)
treef8b9a0f732ac38e18ce6ade266f12478dd2964c0 /fs/mountfs.py
parent9f3cc97b77ef71ae0937a428797a5cb48a7db20c (diff)
downloadpyfilesystem-c73ab0891377d813ff459e2f9d7b953a3817f85f.tar.gz
Added getmeta and hasmeta methods
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@526 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/mountfs.py')
-rw-r--r--fs/mountfs.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/mountfs.py b/fs/mountfs.py
index 079ebad..58c5bf1 100644
--- a/fs/mountfs.py
+++ b/fs/mountfs.py
@@ -68,6 +68,13 @@ class FileMount(object):
class MountFS(FS):
"""A filesystem that delegates to other filesystems."""
+
+ _meta = { 'virtual': True,
+ 'read_only' : False,
+ 'unicode_paths' : True,
+ 'case_insensitive_paths' : False
+ }
+
DirMount = DirMount
FileMount = FileMount