From cad3c019cc9a3fa903d709694454a407e65d9a19 Mon Sep 17 00:00:00 2001 From: Justin Bronn Date: Sat, 6 Dec 2008 01:24:59 +0000 Subject: [PATCH] [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 --- django/contrib/gis/shortcuts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/gis/shortcuts.py b/django/contrib/gis/shortcuts.py index 5310e58eef..58eac4d809 100644 --- a/django/contrib/gis/shortcuts.py +++ b/django/contrib/gis/shortcuts.py @@ -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): """