This commit is contained in:
Andrew Resch 2008-11-30 19:27:51 +00:00
parent 1afef3425f
commit 00cf7a8f34

View file

@ -9,7 +9,7 @@ Simplest example on how to use this module directly
from cherrypy import wsgiserver
def my_crazy_a pp(environ, start_response):
def my_crazy_app(environ, start_response):
status = '200 OK'
response_headers = [('Content-type','text/plain')]
start_response(status, response_headers)