Commit 1086125b by btimby

Wrong class name, caught by unit test.

parent e2db66b5
......@@ -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():
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment