[pywin32-checkins] pywin32/com/win32comext/axscript/client error.py, 1.12, 1.13
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2010-10-27 01:10:03
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/axscript/client In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv11276/com/win32comext/axscript/client Modified Files: error.py Log Message: Fix a few axscript issues with py3k. Index: error.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/axscript/client/error.py,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** error.py 4 Jan 2009 13:45:02 -0000 1.12 --- error.py 27 Oct 2010 01:09:55 -0000 1.13 *************** *** 91,95 **** raise ! def _BuildFromSyntaxError(self, site, value, tb): # All syntax errors should have a message as element 0 try: --- 91,96 ---- raise ! def _BuildFromSyntaxError(self, site, exc, tb): ! value = exc.args # All syntax errors should have a message as element 0 try: |