diff options
| author | Justin Bronn <jbronn@gmail.com> | 2008-12-06 00:38:48 +0000 |
|---|---|---|
| committer | Justin Bronn <jbronn@gmail.com> | 2008-12-06 00:38:48 +0000 |
| commit | 8370e7ca876f305c88863aa84f624b01d6add04e (patch) | |
| tree | 2832311433cc0527d23be40e40b2fd6cd9da8f8f | |
| parent | bfab9d62ee815baac34b1872676ad26af91c7d94 (diff) | |
Fixed #9742 -- remove extraneous 'kml' from KML mimetype. Thanks, robotika for the bug report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9570 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/gis/shortcuts.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): """ |
