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