Created
April 7, 2017 13:34
-
-
Save danslapman/b0a5945f700985057741425c2dd0ac11 to your computer and use it in GitHub Desktop.
Print exception with line number
This file contains hidden or 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
import linecache | |
def PrintException(): | |
exc_type, exc_obj, tb = sys.exc_info() | |
f = tb.tb_frame | |
lineno = tb.tb_lineno | |
filename = f.f_code.co_filename | |
linecache.checkcache(filename) | |
line = linecache.getline(filename, lineno, f.f_globals) | |
print 'EXCEPTION IN ({}, LINE {} "{}"): {}'.format(filename, lineno, line.strip(), exc_obj) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment