diff options
| author | Milton Mazzarri <milmazz@gmail.com> | 2013-11-03 03:22:11 -0600 |
|---|---|---|
| committer | Milton Mazzarri <milmazz@gmail.com> | 2013-11-03 03:22:11 -0600 |
| commit | cbc7cbbc5b5ef03059d8876074560635f2f647b7 (patch) | |
| tree | a5c241c28dcba851a1f383132126b2c82846df68 /django/http/multipartparser.py | |
| parent | fe995e6cbdcf2766cf0aa951c8ef4549ad27694c (diff) | |
Fixed flake8 E251 violations
Diffstat (limited to 'django/http/multipartparser.py')
| -rw-r--r-- | django/http/multipartparser.py | 2 |
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. |
