I have a function called by the main program:
try: someFunction() except: print \"exception happened!\"
but in the middle of the ex
Just refrain from catching the exception and the traceback that Python prints will tell you what exception occurred.