summaryrefslogtreecommitdiff
path: root/fs/contrib
diff options
context:
space:
mode:
authorbtimby <btimby@67cdc799-7952-0410-af00-57a81ceafa0f>2012-06-14 02:49:43 +0000
committerbtimby <btimby@67cdc799-7952-0410-af00-57a81ceafa0f>2012-06-14 02:49:43 +0000
commit2a69a5c9cadbb40dd1a7a9096578b661765278a4 (patch)
tree80da1e0c5511b8f763fa8c8f1c2b89c3e3c60a34 /fs/contrib
parent9ca38ab934a0d6c53ca9616f9df8611aafba9b55 (diff)
downloadpyfilesystem-2a69a5c9cadbb40dd1a7a9096578b661765278a4.tar.gz
Wrong class name, caught by unit test.
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@791 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/contrib')
-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 afac64e..cb066a4 100644
--- a/fs/contrib/archivefs.py
+++ b/fs/contrib/archivefs.py
@@ -258,7 +258,7 @@ class ArchiveMountFS(mountfs.MountFS):
# call would succeed without the check below.
if self.rootfs.isfile(path):
raise ResourceInvalidError(path,msg="Cannot create directory, there's already a file of that name: %(path)s")
- return super(ArchiveFS, self).makedir(path, *args, **kwargs)
+ return super(ArchiveMountFS, self).makedir(path, *args, **kwargs)
def main():