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/core/files/uploadhandler.py | |
| parent | fe995e6cbdcf2766cf0aa951c8ef4549ad27694c (diff) | |
Fixed flake8 E251 violations
Diffstat (limited to 'django/core/files/uploadhandler.py')
| -rw-r--r-- | django/core/files/uploadhandler.py | 14 |
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 ) |
