Last active
September 23, 2016 15:33
-
-
Save ktosiek/744026e139ee130fc63122011554f112 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> with client.capture_exceptions(): | |
... print(1 + {}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> from raven import Client | |
>>> client = Client() | |
>>> try: | |
... print(1 + {}) | |
... except: | |
... client.captureException() | |
... | |
... | |
>>> | |
>>> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment