~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/apps/error.py

  • Committer: Michael Hudson-Doyle
  • Date: 2012-01-23 21:10:46 UTC
  • mfrom: (461.3.1 bug-390029)
  • Revision ID: michael.hudson@linaro.org-20120123211046-ec3rqt27goxfnxnq
fix a crash in comparing a revision to itself

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)