Traceback (most recent call last): ... File "...", line ..., in ... process(lst[index]) IndexError: list index out of range
import catcher try: launch_important_stuff() except Exception, e: report = catcher.collect(e) html = catcher.formatters.HTMLFormatter().format(report, maxdepth=4) url = catcher.uploaders.AjentiOrgUploader().upload(html) print 'Application has crashed. Please submit this link along with the bug report:' print url
Source: https://habr.com/ru/post/188400/
All Articles