def oopsie(request): client.capture_message('About to blow up!') try: 1 / 0 except ZeroDivisionError: try: 1 + "a" except TypeError: raise AssertionError("oh no")
def oopsie(request): client.capture_message('About to blow up!') assert False