From e8c413a3e24f9828253eaadde3bdd66149912234 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Wed, 27 Oct 2010 20:08:54 +0000 Subject: [PATCH] [1.2.X] Fixed #14577 -- fixed a docstring typo. Thanks to dauerbaustelle for the report and patch. Backport of [14364]. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@14365 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/files/uploadhandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/core/files/uploadhandler.py b/django/core/files/uploadhandler.py index 6c769780e5..2afb79e051 100755 --- a/django/core/files/uploadhandler.py +++ b/django/core/files/uploadhandler.py @@ -109,7 +109,7 @@ class FileUploadHandler(object): Signal that a file has completed. File size corresponds to the actual size accumulated by all the chunks. - Subclasses must should return a valid ``UploadedFile`` object. + Subclasses should return a valid ``UploadedFile`` object. """ raise NotImplementedError()