Mercurial > code > home > repos > homeauto
view lib/cycloneerr/cycloneerr.py @ 1413:14802ffc9e44
clean up reasoning page
Ignore-this: e365f3e50b7610c8e694b8641acdae2
darcs-hash:b483f397e3dbfcd574cf8a4a6a450f2893c303fd
author | drewp <drewp@bigasterisk.com> |
---|---|
date | Wed, 24 Jul 2019 01:02:31 -0700 |
parents | c5bd44f90ced |
children | fd94061db75c |
line wrap: on
line source
try: import http.client as httplib except ImportError: import httplib # type: ignore import cgi class PrettyErrorHandler(object): """ mix-in to improve cyclone.web.RequestHandler """ def get_error_html(self, status_code, **kwargs): try: tb = kwargs['exception'].getTraceback() except AttributeError: tb = "" return "<html><title>%(code)d: %(message)s</title>" \ "<body>%(code)d: %(message)s<pre>%(tb)s</pre></body></html>" % { "code": status_code, "message": httplib.responses[status_code], "tb" : cgi.escape(tb), }