diff options
| author | areski <areski@gmail.com> | 2014-08-04 13:29:59 +0200 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-08-04 08:29:00 -0400 |
| commit | e4dd8b5dde922d967697b2bdd573aa2364da4f1b (patch) | |
| tree | 8e6a509895177bd00d1310d2dae10899ef508c67 /docs/topics | |
| parent | 5e06fa1469180909c51c07151692412269e51ea3 (diff) | |
Fixed #23169 - Misc docs fixes.
Diffstat (limited to 'docs/topics')
| -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 |
