diff options
Diffstat (limited to 'fs/contrib')
-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 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(): |