~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/apps/error.py

  • Committer: Ian Clatworthy
  • Date: 2010-04-22 08:52:59 UTC
  • mfrom: (405.1.8 small-cleanups)
  • Revision ID: ian.clatworthy@canonical.com-20100422085259-1nb59i53emu2ny5b
Merge John's minor cleanups

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
 
54
54
 
55
55
def errapp(environ, start_response):
56
 
    '''Default (and trivial) error handling WSGI application.'''
 
56
    """Default (and trivial) error handling WSGI application."""
57
57
    c = ErrorUI(environ['branch'], environ['exc_info'])
58
58
    return c(environ, start_response)