~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to wsgitest.py

  • Committer: Michael Hudson
  • Date: 2008-06-16 11:22:38 UTC
  • mto: This revision was merged to the branch mainline in revision 164.
  • Revision ID: michael.hudson@canonical.com-20080616112238-ui1bdxlsgi5v2sxc
oopsie

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
app = make_middleware(app)
73
73
app = make_filter(app, None)
74
74
 
75
 
from paste.evalexception.middleware import EvalException
76
75
 
77
 
httpserver.serve(EvalException(app), host='127.0.0.1', port='9876')
 
76
httpserver.serve(app, host='127.0.0.1', port='9876')
78
77