Fix line length again...

This commit is contained in:
Eli Uriegas
2017-03-28 22:47:52 -05:00
parent 04a0774ee5
commit f0a55b5cbb
2 changed files with 9 additions and 2 deletions

View File

@@ -331,7 +331,11 @@ def stream(
:param headers: Custom Headers.
"""
return StreamingHTTPResponse(
streaming_fn, headers=headers, content_type=content_type, status=status)
streaming_fn,
headers=headers,
content_type=content_type,
status=status
)
def redirect(to, headers=None, status=302,