Commit 805f7baa authored by Ilya Simonov's avatar Ilya Simonov

fix upload local file

parent 66b10e45
......@@ -24,10 +24,10 @@ def download_file(url):
return local_filename
def handle_uploaded_file(f, file_name):
def handle_uploaded_file(file, filename):
chunk_count = 0
with open(file_name, 'wb+') as destination:
for chunk in f.chunks():
with open(filename, 'wb+') as destination:
for chunk in file.chunks(chunk_size=8192):
destination.write(chunk)
chunk_count += 1
......
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