fix fallback

This commit is contained in:
j 2017-10-10 17:39:29 +02:00
parent 5512252570
commit 2eac09691b
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ def HttpFileResponse(path, content_type=None, filename=None):
response['Content-Type'] = content_type
response['Content-Length'] = os.stat(path).st_size
else:
response = HttpResponse(open(path), content_type=content_type)
response = HttpResponse(open(path, 'rb'), content_type=content_type)
if filename:
if not isinstance(filename, bytes):
filename = filename.encode('utf-8')