return boolean on complete (match super class)

This commit is contained in:
Rob Weber 2013-03-04 10:27:25 -06:00
parent 7e703ca08c
commit db7f7a02f5

View File

@ -169,6 +169,7 @@ class DropboxFileSystem(Vfs):
f = self.client.get_file(source).read() f = self.client.get_file(source).read()
out.write(f) out.write(f)
out.close() out.close()
return True
else: else:
return False return False