Commit a1fa7218 by Alexander Dutton

Pass {} as data to DataAndFiles, as it ends up in a MergeDict

In the same vein as #2399.
parent b07d9312
......@@ -250,7 +250,7 @@ class FileUploadParser(BaseParser):
None,
encoding)
if result is not None:
return DataAndFiles(None, {'file': result[1]})
return DataAndFiles({}, {'file': result[1]})
# This is the standard case.
possible_sizes = [x.chunk_size for x in upload_handlers if x.chunk_size]
......
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