summaryrefslogtreecommitdiff
path: root/django/core/files/uploadhandler.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/core/files/uploadhandler.py
parentfe995e6cbdcf2766cf0aa951c8ef4549ad27694c (diff)
Fixed flake8 E251 violations
Diffstat (limited to 'django/core/files/uploadhandler.py')
-rw-r--r--django/core/files/uploadhandler.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/django/core/files/uploadhandler.py b/django/core/files/uploadhandler.py
index 4b23d48fb4..995e97a2f6 100644
--- a/django/core/files/uploadhandler.py
+++ b/django/core/files/uploadhandler.py
@@ -193,13 +193,13 @@ class MemoryFileUploadHandler(FileUploadHandler):
self.file.seek(0)
return InMemoryUploadedFile(
- file = self.file,
- field_name = self.field_name,
- name = self.file_name,
- content_type = self.content_type,
- size = file_size,
- charset = self.charset,
- content_type_extra = self.content_type_extra
+ file=self.file,
+ field_name=self.field_name,
+ name=self.file_name,
+ content_type=self.content_type,
+ size=file_size,
+ charset=self.charset,
+ content_type_extra=self.content_type_extra
)