Commit a70fd5cb by willmcgugan

Fixed issue with spaces in tag params

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