Skip to content

Commit

Permalink
flake8 compliance (fix line too long)
Browse files Browse the repository at this point in the history
  • Loading branch information
maitai committed Oct 7, 2014
1 parent 86a8084 commit 6a2176d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion eve/render.py
Expand Up @@ -199,7 +199,8 @@ def _prepare_response(resource, dct, last_modified=None, etag=None,
else:
resp.headers.add('Access-Control-Allow-Origin', '')
resp.headers.add('Access-Control-Allow-Headers', ', '.join(headers))
resp.headers.add('Access-Control-Expose-Headers', ', '.join(expose_headers))
resp.headers.add('Access-Control-Expose-Headers',
', '.join(expose_headers))
resp.headers.add('Access-Control-Allow-Methods', methods)
resp.headers.add('Access-Control-Allow-Max-Age', config.X_MAX_AGE)

Expand Down

0 comments on commit 6a2176d

Please sign in to comment.