From e37e57f44a3c933946a6488e03713569ffccc753 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 18 Nov 2008 06:35:05 +0000 Subject: [PATCH] Removed 'Most Web sites wouldn't be complete without a way to upload files' sentence from file-uploads.txt in docs. I beg to differ. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9487 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/topics/http/file-uploads.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/topics/http/file-uploads.txt b/docs/topics/http/file-uploads.txt index 18abeaa087..aebdc32a31 100644 --- a/docs/topics/http/file-uploads.txt +++ b/docs/topics/http/file-uploads.txt @@ -8,11 +8,11 @@ File Uploads .. versionadded:: 1.0 -Most Web sites wouldn't be complete without a way to upload files. When Django -handles a file upload, the file data ends up placed in ``request.FILES`` (for -more on the ``request`` object see the documentation for :ref:`request and -response objects `). This document explains how files are -stored on disk and in memory, and how to customize the default behavior. +When Django handles a file upload, the file data ends up placed in +``request.FILES`` (for more on the ``request`` object see the documentation for +:ref:`request and response objects `). This document +explains how files are stored on disk and in memory, and how to customize the +default behavior. Basic file uploads ==================