Fix missing request.files in MultiPartParser doc

This commit is contained in:
Dan Lipsitt 2015-12-16 10:47:04 -08:00
parent 00ead782d4
commit 521a4fb3b2

View File

@ -83,7 +83,7 @@ You will typically want to use both `FormParser` and `MultiPartParser` together
## MultiPartParser
Parses multipart HTML form content, which supports file uploads. Both `request.data` will be populated with a `QueryDict`.
Parses multipart HTML form content, which supports file uploads. Both `request.data` and `request.files` will be populated with a `QueryDict`.
You will typically want to use both `FormParser` and `MultiPartParser` together in order to fully support HTML form data.