summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbtimby <btimby@67cdc799-7952-0410-af00-57a81ceafa0f>2013-03-04 15:52:46 +0000
committerbtimby <btimby@67cdc799-7952-0410-af00-57a81ceafa0f>2013-03-04 15:52:46 +0000
commitcd9367401b11631eba8f43f1067008ae75d0e3c9 (patch)
treed4ec68b714e7ae55b38684ab83f73615c1b2f9c2
parente9bd2869ec6073cbb167fb6ec49dad7799ae1238 (diff)
downloadpyfilesystem-cd9367401b11631eba8f43f1067008ae75d0e3c9.tar.gz
*sigh* typo, caught during testing.
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@846 67cdc799-7952-0410-af00-57a81ceafa0f
-rw-r--r--fs/contrib/archivefs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/contrib/archivefs.py b/fs/contrib/archivefs.py
index 4c7f2a6..cfc1cbd 100644
--- a/fs/contrib/archivefs.py
+++ b/fs/contrib/archivefs.py
@@ -186,7 +186,7 @@ class ArchiveMountFS(mountfs.MountFS):
@synchronize
def close(self):
# Close and delete references to any other fs instances.
- if self.rootsfs is not None:
+ if self.rootfs is not None:
self.rootfs.close()
self.rootfs = None
super(ArchiveMountFS, self).close()