changed bewline formatting

This commit is contained in:
Dirk Guijt 2018-02-07 09:29:44 +01:00
parent 48d45f1ca4
commit e083224df1

View File

@ -312,8 +312,9 @@ def parse_multipart_form(body, boundary):
if field_name:
post_data = form_part[line_index:-4]
if file_name:
form_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(form_file)
else: