summaryrefslogtreecommitdiff
path: root/tests/urlparser_data/not_found/user/list.py
blob: f6228f0c6610523f297033b17e7957d5975ec42d (plain)
1
2
3
def application(environ, start_response):
    start_response('200 OK', [('Content-type', 'text/plain')])
    return ['user: %s' % environ.get('app.user')]