summaryrefslogtreecommitdiff
path: root/django/core/files/uploadhandler.py
diff options
context:
space:
mode:
authorKaren Tracey <kmtracey@gmail.com>2009-05-17 16:45:28 +0000
committerKaren Tracey <kmtracey@gmail.com>2009-05-17 16:45:28 +0000
commit50745cc31ecd0ff76dafed2fb903d14c1b30d707 (patch)
treec2c20c8a28dd952023df4f9d4604ec64dbeae4ca /django/core/files/uploadhandler.py
parent92e5249a677c1c60d2a13ad0203716840fc71143 (diff)
downloaddjango-50745cc31ecd0ff76dafed2fb903d14c1b30d707.tar.gz
Fixed #11066 -- Corrected 15 duplicate "the"s found in docs and code comments. Thanks kaikuehne.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10801 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/core/files/uploadhandler.py')
-rwxr-xr-xdjango/core/files/uploadhandler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/files/uploadhandler.py b/django/core/files/uploadhandler.py
index f6945853fe..6c769780e5 100755
--- a/django/core/files/uploadhandler.py
+++ b/django/core/files/uploadhandler.py
@@ -152,7 +152,7 @@ class MemoryFileUploadHandler(FileUploadHandler):
Use the content_length to signal whether or not this handler should be in use.
"""
# Check the content-length header to see if we should
- # If the the post is too large, we cannot use the Memory handler.
+ # If the post is too large, we cannot use the Memory handler.
if content_length > settings.FILE_UPLOAD_MAX_MEMORY_SIZE:
self.activated = False
else: