[pywin32-checkins] pywin32 pywin32_postinstall.py,1.29,1.30
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-12-05 23:59:19
|
Update of /cvsroot/pywin32/pywin32 In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv12275 Modified Files: pywin32_postinstall.py Log Message: One more raise statement to modern syntax Index: pywin32_postinstall.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/pywin32_postinstall.py,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** pywin32_postinstall.py 4 Dec 2008 06:56:36 -0000 1.29 --- pywin32_postinstall.py 5 Dec 2008 23:59:14 -0000 1.30 *************** *** 99,103 **** csidl = getattr(shellcon, maybe) return shell.SHGetSpecialFolderPath(0, csidl, False) ! raise ValueError, "%s is an unknown path ID" % (path_name,) def CopyTo(desc, src, dest): --- 99,103 ---- csidl = getattr(shellcon, maybe) return shell.SHGetSpecialFolderPath(0, csidl, False) ! raise ValueError("%s is an unknown path ID" % (path_name,)) def CopyTo(desc, src, dest): |