Skip to content

Instantly share code, notes, and snippets.

@avenet
Last active August 29, 2015 14:00
Show Gist options
  • Save avenet/11303537 to your computer and use it in GitHub Desktop.
Save avenet/11303537 to your computer and use it in GitHub Desktop.
Get exception traceback
import traceback
try:
raise Exception("This is the exception text")
except Exception, e:
exception_traceback = traceback.format_exc()
print exception_traceback
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment