Comment 47 for bug 1053910

Revision history for this message
In , Jonathan Thomas (echidnaman) wrote :

Could you try replacing "except Exception, e:" with "except BaseException, e:"? Apparently python's Exception class is only for non language-defined exceptions. :/ (Unlike Java exceptions... Another reason to hate python)