summaryrefslogtreecommitdiff
path: root/fs/contrib
diff options
context:
space:
mode:
authorbtimby <btimby@67cdc799-7952-0410-af00-57a81ceafa0f>2012-09-17 20:26:01 +0000
committerbtimby <btimby@67cdc799-7952-0410-af00-57a81ceafa0f>2012-09-17 20:26:01 +0000
commitde1505bc262cb1152944faa0dd07f4e7a5720974 (patch)
treec9d30471cec21ceedc7e6bc87f1ef3a151ad927f /fs/contrib
parent15197121d30489852aea610a5f6f31e06c4bf0e3 (diff)
downloadpyfilesystem-git-de1505bc262cb1152944faa0dd07f4e7a5720974.tar.gz
Had replaced **kwargs with named arguments. Needed to update this call accordingly.
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 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