Commit a70fd5cb by willmcgugan

Fixed issue with spaces in tag params

parent 835de620
......@@ -710,8 +710,7 @@ class FS(object):
bytes_written += len(chunk)
progress_callback(bytes_written)
chunk = read(chunk_size)
else:
progress_callback(0)
else:
f.write(data)
progress_callback(len(data))
......@@ -757,6 +756,7 @@ class FS(object):
:param path: path to directory to open
:rtype: An FS object
"""
if path in ('', '/'):
......
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