Commit 0ae86211 authored by Ilya Simonov's avatar Ilya Simonov

revert 805f7baa

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