Timothy Smith wrote:
>iw ant to use a singel try except statment with my main app loop in the
>middle and catch all tracebacks and email them to myself as a bug
>report. however it seems a little more tricky then i thought
>
>try:
>Main.Main()
>except Exception, err_o:
>print err_o.__cla
iw ant to use a singel try except statment with my main app loop in the
middle and catch all tracebacks and email them to myself as a bug
report. however it seems a little more tricky then i thought
try:
Main.Main()
except Exception, err_o:
print err_o.__class__.__name__, '//', err_o, '/