Home | History | Annotate | Download | only in hook
      1 import six
      2 
      3 def application(environ, start_response):
      4     start_response('200 OK', [('Content-type', 'text/html')])
      5     body = 'index: %s' % environ['app.user']
      6     if six.PY3:
      7         body = body.encode('ascii')
      8     return [body]
      9 
     10