diff options
author | btimby <btimby@67cdc799-7952-0410-af00-57a81ceafa0f> | 2012-09-13 22:30:33 +0000 |
---|---|---|
committer | btimby <btimby@67cdc799-7952-0410-af00-57a81ceafa0f> | 2012-09-13 22:30:33 +0000 |
commit | 41e56efd3273c26a97a0885ceb9f59d830369e10 (patch) | |
tree | aeb629534b1a15fe3480c0af4e3415adff77751c /fs | |
parent | 5119e7c969ec4cb45cb407fcbcfd55a459081dd9 (diff) | |
download | pyfilesystem-41e56efd3273c26a97a0885ceb9f59d830369e10.tar.gz |
Oops, forgot the auto_mount parameter.
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@816 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs')
-rw-r--r-- | fs/contrib/archivefs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/contrib/archivefs.py b/fs/contrib/archivefs.py index 2422723..1703278 100644 --- a/fs/contrib/archivefs.py +++ b/fs/contrib/archivefs.py @@ -196,7 +196,7 @@ class ArchiveMountFS(mountfs.MountFS): return False return type(object) is mountfs.MountFS.DirMount - def _delegate(self, path): + def _delegate(self, path, auto_mount=True): if self.auto_mount and auto_mount: for ppath in recursepath(path)[1:]: if self.ismount(ppath): |