Find the WSGI contract violation in this response.
Python
def application(environ, start_response):
body = "café"
start_response("200 OK", [("Content-Type", "text/plain")])
return [body]
def application(environ, start_response):
body = "café"
start_response("200 OK", [("Content-Type", "text/plain")])
return [body]