summaryrefslogtreecommitdiff
path: root/django/http/multipartparser.py
diff options
context:
space:
mode:
authorMilton Mazzarri <milmazz@gmail.com>2013-11-03 03:22:11 -0600
committerMilton Mazzarri <milmazz@gmail.com>2013-11-03 03:22:11 -0600
commitcbc7cbbc5b5ef03059d8876074560635f2f647b7 (patch)
treea5c241c28dcba851a1f383132126b2c82846df68 /django/http/multipartparser.py
parentfe995e6cbdcf2766cf0aa951c8ef4549ad27694c (diff)
Fixed flake8 E251 violations
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 dcf2d1ae0d..21617255a8 100644
--- a/django/http/multipartparser.py
+++ b/django/http/multipartparser.py
@@ -495,7 +495,7 @@ class BoundaryIter(six.Iterator):
stream.unget(chunk[-rollback:])
return chunk[:-rollback]
- def _find_boundary(self, data, eof = False):
+ def _find_boundary(self, data, eof=False):
"""
Finds a multipart boundary in data.