diff --git a/docs/topics/http/file-uploads.txt b/docs/topics/http/file-uploads.txt index 08b0b761dd9cc..d8bd0dc4f64ac 100644 --- a/docs/topics/http/file-uploads.txt +++ b/docs/topics/http/file-uploads.txt @@ -254,10 +254,12 @@ list:: .. note:: - You can only modify upload handlers *before* accessing ``request.FILES`` -- - it doesn't make sense to change upload handlers after upload handling has - already started. If you try to modify ``request.upload_handlers`` after - reading from ``request.FILES`` Django will throw an error. + You can only modify upload handlers *before* accessing + ``request.POST`` or ``request.FILES`` -- it doesn't make sense to + change upload handlers after upload handling has already + started. If you try to modify ``request.upload_handlers`` after + reading from ``request.POST`` or ``request.FILES`` Django will + throw an error. Thus, you should always modify uploading handlers as early in your view as possible.