Commit 8370e7ca authored by Justin Bronn's avatar Justin Bronn
Browse files

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
parent bfab9d62
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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):
    """