[pywin32-checkins] pywin32/Pythonwin/pywin/framework help.py,1.9,1.10
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2005-12-02 07:54:43
|
Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/framework In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12790/Pythonwin/pywin/framework Modified Files: help.py Log Message: Fix bad variable reference in exception handler. Index: help.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/framework/help.py,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** help.py 6 Oct 2003 13:30:26 -0000 1.9 --- help.py 2 Dec 2005 07:54:35 -0000 1.10 *************** *** 77,81 **** import winerror if code!=winerror.ERROR_FILE_NOT_FOUND: ! raise win32api.error, (code, fn, desc) return retList try: --- 77,81 ---- import winerror if code!=winerror.ERROR_FILE_NOT_FOUND: ! raise win32api.error, (code, fn, details) return retList try: |