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):
|