changed 'file' variable to 'form_file' to prevent overwriting the reserved word

This commit is contained in:
Dirk Guijt 2018-02-03 03:07:07 +01:00
parent 1eecffce97
commit ddf2a604d1

View File

@ -312,11 +312,11 @@ def parse_multipart_form(body, boundary):
if field_name:
post_data = form_part[line_index:-4]
if file_name:
file = File(type=content_type, name=file_name, body=post_data)
form_file = File(type=content_type, name=file_name, body=post_data)
if field_name in files:
files[field_name].append(file)
files[field_name].append(form_file)
else:
files[field_name] = [file]
files[field_name] = [form_file]
else:
value = post_data.decode(content_charset)
if field_name in fields: