Skip to content

Commit

Permalink
pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurdarcet committed Feb 16, 2015
1 parent 088458f commit 282147a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aiohttp/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ def _gen_form_data(self, encoding='utf-8', chunk_size=8192):
for i in type_options.items())

out_headers.append(
('Content-Disposition: form-data; ' + opts).encode(encoding)
+ b'\r\n')
('Content-Disposition: form-data; ' + opts).encode(encoding) +
b'\r\n')

for k, v in headers.items():
out_headers.append('{}: {}\r\n'.format(k, v).encode(encoding))
Expand Down

0 comments on commit 282147a

Please sign in to comment.