Add Book.ancestor m2m.
[wolnelektury.git] / apps / reporting / utils.py
index 06a1680..8ecb9b0 100755 (executable)
@@ -113,7 +113,7 @@ def generated_file_view(file_name, mime_type, send_name=None, signals=None):
             else:
                 name = send_name
 
-            response = HttpResponse(mimetype=mime_type)
+            response = HttpResponse(content_type=mime_type)
             response['Content-Disposition'] = 'attachment; filename=%s' % name
             with open(file_path) as f:
                 for chunk in read_chunks(f):