summaryrefslogtreecommitdiff
path: root/fs/iotools.py
diff options
context:
space:
mode:
authorwillmcgugan@gmail.com <willmcgugan@gmail.com@67cdc799-7952-0410-af00-57a81ceafa0f>2014-03-13 18:47:17 +0000
committerwillmcgugan@gmail.com <willmcgugan@gmail.com@67cdc799-7952-0410-af00-57a81ceafa0f>2014-03-13 18:47:17 +0000
commit63ae726cd4b2e11176a9ca592fab7a6ae9c670f0 (patch)
tree29b872dda5258bb8a4b73a0df9bfe568b495c6d8 /fs/iotools.py
parent0cae6ca12c867234cfd42cda8de336d97b5240f0 (diff)
downloadpyfilesystem-git-63ae726cd4b2e11176a9ca592fab7a6ae9c670f0.tar.gz
Test fixes and preparations for 0.5.0 release
Diffstat (limited to 'fs/iotools.py')
-rw-r--r--fs/iotools.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/iotools.py b/fs/iotools.py
index fcf4818..f2e0f6e 100644
--- a/fs/iotools.py
+++ b/fs/iotools.py
@@ -188,8 +188,6 @@ def make_bytes_io(data, encoding=None, errors=None):
return io.BytesIO(data)
-
-
def copy_file_to_fs(f, fs, path, encoding=None, errors=None, progress_callback=None, chunk_size=64 * 1024):
"""Copy an open file to a path on an FS"""
if progress_callback is None: