Browse Source

Using the 'miemetype' parameter in HttpResponseBase was deprecated

since Django 1.4. Since Django 1.7 the 'mimetype' is vanished and has been
replaced with 'content_type'.

Thanks to @Irexistus for pointing that out.
pull/185/head
Konrad Świat 10 years ago
parent
commit
6ff46cdd05
  1. 4
      pygal/ghost.py

4
pygal/ghost.py

@ -142,11 +142,11 @@ class Ghost(object):
"""Render the graph, and return a Flask response"""
from flask import Response
return Response(self.render(**kwargs), mimetype='image/svg+xml')
def render_django_response(self, **kwargs):
"""Render the graph, and return a Django response"""
from django.http import HttpResponse
return HttpResponse(self.render(**kwargs), mimetype='image/svg+xml')
return HttpResponse(self.render(**kwargs), content_type='image/svg+xml')
def render_to_file(self, filename, **kwargs):
"""Render the graph, and write it to filename"""

Loading…
Cancel
Save