~mnordhoff/loggerhead/cheezum

« back to all changes in this revision

Viewing changes to loggerhead/apps/error.py

A bunch of random PEP 8 and stylistic improvements. Also fix a typo on error pages.

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)