catcher icon indicating copy to clipboard operation
catcher copied to clipboard

Beautiful tracebacks for Python

Results 2 catcher issues
Sort by recently updated
recently updated
newest added

If I try to use `AjentiOrgUploader`, it does not publish my report, but instead returns `404 not found`. As for the `PasteHTMLUploader`, `pastehtml.com` returns `uploads are switched off currently`.

Simple example (yes, Flask is imported but not used): ``` python import sys from flask import Flask import catcher def exception_handler(exc_type, exc, tb): exc.traceback_backup = tb report = catcher.collect(exc) print...