diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2010-10-27 20:08:20 +0000 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2010-10-27 20:08:20 +0000 |
commit | 3d69b217901ba4ea094b7999ba931ad1c20a61e7 (patch) | |
tree | b53e82dc24135e833675d083da45e81aefc860c0 /django/core/files/uploadhandler.py | |
parent | 4239bb0f35d40f820e344a55338f8bbe5ae9eb98 (diff) | |
download | django-3d69b217901ba4ea094b7999ba931ad1c20a61e7.tar.gz |
Fixed #14577 -- fixed a docstring typo. Thanks to dauerbaustelle for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14364 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/core/files/uploadhandler.py')
-rwxr-xr-x | django/core/files/uploadhandler.py | 2 |
1 files changed, 1 insertions, 1 deletions
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() |