summaryrefslogtreecommitdiff
path: root/django/core/files/uploadhandler.py
diff options
context:
space:
mode:
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: