summaryrefslogtreecommitdiff
path: root/django/http/multipartparser.py
diff options
context:
space:
mode:
authorJon Dufresne <jon.dufresne@gmail.com>2016-06-05 13:36:59 -0700
committerTim Graham <timograham@gmail.com>2016-06-05 16:36:59 -0400
commita8f957797d8035a542cdb20b03aaebd81b9529e2 (patch)
tree0e4aee7c5cfb7665fd61b3c027039960de8539d8 /django/http/multipartparser.py
parent01e567864ef9d9892e7181b62f7c51a1b9f76e37 (diff)
downloaddjango-a8f957797d8035a542cdb20b03aaebd81b9529e2.tar.gz
Fixed comment typo in multiparser.py
Diffstat (limited to 'django/http/multipartparser.py')
-rw-r--r--django/http/multipartparser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/http/multipartparser.py b/django/http/multipartparser.py
index 82b7ce00e1..97961f89aa 100644
--- a/django/http/multipartparser.py
+++ b/django/http/multipartparser.py
@@ -261,7 +261,7 @@ class MultiPartParser(object):
counters[i] += chunk_length
if chunk is None:
# Don't continue if the chunk received by
- # the handler qis None.
+ # the handler is None.
break
except SkipFile: