Skip to content

Instantly share code, notes, and snippets.

@c0ldlimit
Created November 16, 2012 17:12
Show Gist options
  • Save c0ldlimit/4089081 to your computer and use it in GitHub Desktop.
Save c0ldlimit/4089081 to your computer and use it in GitHub Desktop.
Python: Printing Exception Traceback #c0ldlimit #python #traceback
#Traceback.format_exc() or sys.exc_info() will yeild more info if thats what you want.
import traceback
import sys
try:
do_stuff()
except Exception, err:
print traceback.format_exc()
#or
print sys.exc_info()[0]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment