summaryrefslogtreecommitdiff
path: root/tests/urlparser_data/hook/app.py
blob: d2714e5c5ce20e8288411b20cb95cea47656762a (plain)
1
2
3
4
5
def application(environ, start_response):
    start_response('200 OK', [('Content-type', 'text/html')])
    return ['user: %s' % environ['app.user']]