summaryrefslogtreecommitdiff
path: root/fs/contrib/archivefs.py
diff options
context:
space:
mode:
Diffstat (limited to 'fs/contrib/archivefs.py')
-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 0557a0e..aed90f1 100644
--- a/fs/contrib/archivefs.py
+++ b/fs/contrib/archivefs.py
@@ -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.
if srcfs is dstfs and srcfs is not self:
# 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:
# Src and dst are on different file systems. Just do the copy...
srcfd = None