Update of /cvsroot/pywin32/pywin32/com/win32com/client
In directory sc8-pr-cvs1:/tmp/cvs-serv753
Modified Files:
gencache.py
Log Message:
Don't str() the arg to os.stat
Index: gencache.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32com/client/gencache.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** gencache.py 26 Jul 2003 00:53:02 -0000 1.19
--- gencache.py 2 Sep 2003 00:18:40 -0000 1.20
***************
*** 417,421 ****
#print "Trying stat typelib", pyModTime
#print str(typLibPath)
! typLibModTime = os.stat(str(typLibPath[:-1]))[8]
if fModTimeSet and (typLibModTime > pyModTime):
bReloadNeeded = 1
--- 417,421 ----
#print "Trying stat typelib", pyModTime
#print str(typLibPath)
! typLibModTime = os.stat(typLibPath[:-1])[8]
if fModTimeSet and (typLibModTime > pyModTime):
bReloadNeeded = 1
|