summaryrefslogtreecommitdiff
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
commit007d7d9ba0ff2d4007bec6fc798e1516219077ab (patch)
treec9d30471cec21ceedc7e6bc87f1ef3a151ad927f
parentf8bfcdcb2f117d84c86ab6e5aab186e099cf0ba1 (diff)
downloadpyfilesystem-007d7d9ba0ff2d4007bec6fc798e1516219077ab.tar.gz
Had replaced **kwargs with named arguments. Needed to update this call accordingly.
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@820 67cdc799-7952-0410-af00-57a81ceafa0f
-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