[1.0.X] Fixed #9742 -- remove extraneous 'kml' from KML mimetype. Thanks, robotika for the bug report.
Backport of r9570 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9571 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
687823640d
commit
cad3c019cc
|
@ -14,7 +14,7 @@ def compress_kml(kml):
|
|||
def render_to_kml(*args, **kwargs):
|
||||
"Renders the response as KML (using the correct MIME type)."
|
||||
return HttpResponse(loader.render_to_string(*args, **kwargs),
|
||||
mimetype='application/vnd.google-earth.kml+xml kml')
|
||||
mimetype='application/vnd.google-earth.kml+xml')
|
||||
|
||||
def render_to_kmz(*args, **kwargs):
|
||||
"""
|
||||
|
|
Loading…
Reference in New Issue