Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion webodt/shortcuts.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
from webodt.converters import converter
from webodt.helpers import get_mimetype

from django import get_version
if get_version()[0] >= 1 and get_version()[2] > 5:
from django.http import StreamingHttpResponse as HttpResponse



import webodt

def render_to(format, template_name,
Expand Down Expand Up @@ -78,7 +84,7 @@ def render_to_response(template_name,
content = _ifile(content_fd)
else:
content = content_fd.read()
response = HttpResponse(content, mimetype=mimetype)
response = HttpResponse(content, content_type=mimetype)
if not filename:
filename = os.path.basename(template_name)
filename += '.%s' % format
Expand Down