Commit de1505bc by btimby

Had replaced **kwargs with named arguments. Needed to update this call accordingly.

parent 15197121
...@@ -336,7 +336,7 @@ class ArchiveMountFS(mountfs.MountFS): ...@@ -336,7 +336,7 @@ class ArchiveMountFS(mountfs.MountFS):
# srcfs, src and dstfs, dst are now the file system and path for our src and dst. # srcfs, src and dstfs, dst are now the file system and path for our src and dst.
if srcfs is dstfs and srcfs is not self: if srcfs is dstfs and srcfs is not self:
# Both src and dst are on the same fs, let it do the copy. # Both src and dst are on the same fs, let it do the copy.
srcfs.copy(src, dst, **kwargs) srcfs.copy(src, dst, overwrite=overwrite, chunk_size=chunk_size)
else: else:
# Src and dst are on different file systems. Just do the copy... # Src and dst are on different file systems. Just do the copy...
srcfd = None srcfd = None
......
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