diff options
| author | areski <areski@gmail.com> | 2014-08-04 13:29:59 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-08-04 08:31:18 -0400 |
| commit | a582431b414295ad4cabf0dc8d76229512a459df (patch) | |
| tree | 5be74175ee4c28f159b4f8e18164919799f5d1f2 /docs/topics/http | |
| parent | d723da383da81de6d2b3b149eb8ced80d9d2c29c (diff) | |
[1.7.x] Fixed #23169 - Misc docs fixes.
Backport of e4dd8b5dde from master
Diffstat (limited to 'docs/topics/http')
| -rw-r--r-- | docs/topics/http/file-uploads.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/http/file-uploads.txt b/docs/topics/http/file-uploads.txt index 81d7ba043d..ec45665bea 100644 --- a/docs/topics/http/file-uploads.txt +++ b/docs/topics/http/file-uploads.txt @@ -26,7 +26,7 @@ Consider a simple form containing a :class:`~django.forms.FileField`:: class UploadFileForm(forms.Form): title = forms.CharField(max_length=50) - file = forms.FileField() + file = forms.FileField() A view handling this form will receive the file data in :attr:`request.FILES <django.http.HttpRequest.FILES>`, which is a dictionary |
