summaryrefslogtreecommitdiff
path: root/django/http/multipartparser.py
diff options
context:
space:
mode:
authorLoic Bistuer <loic.bistuer@sixmedia.com>2013-12-13 03:23:24 +0700
committerTim Graham <timograham@gmail.com>2013-12-14 11:59:15 -0500
commit668571386926ff5453d0e11f59b0a89c0dc1dfa2 (patch)
treeab2cf4f5c32d966452ef01eee93c09642f769b6a /django/http/multipartparser.py
parentd599b590ebe6e2d3a60cf033de4d81c6b963bb04 (diff)
downloaddjango-668571386926ff5453d0e11f59b0a89c0dc1dfa2.tar.gz
Fixed E127 pep8 warnings.
Diffstat (limited to 'django/http/multipartparser.py')
-rw-r--r--django/http/multipartparser.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/django/http/multipartparser.py b/django/http/multipartparser.py
index 1c64195f25..eecf6150d4 100644
--- a/django/http/multipartparser.py
+++ b/django/http/multipartparser.py
@@ -259,10 +259,9 @@ class MultiPartParser(object):
file_obj = handler.file_complete(counters[i])
if file_obj:
# If it returns a file object, then set the files dict.
- self._files.appendlist(force_text(old_field_name,
- self._encoding,
- errors='replace'),
- file_obj)
+ self._files.appendlist(
+ force_text(old_field_name, self._encoding, errors='replace'),
+ file_obj)
break
def IE_sanitize(self, filename):