[pywin32-checkins] pywin32 pywin32_postinstall.py,1.31,1.32
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2009-02-16 06:32:24
|
Update of /cvsroot/pywin32/pywin32 In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv22072 Modified Files: pywin32_postinstall.py Log Message: record the new dbi.pyd.old file we created so it uninstalls Index: pywin32_postinstall.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/pywin32_postinstall.py,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** pywin32_postinstall.py 27 Jan 2009 06:25:02 -0000 1.31 --- pywin32_postinstall.py 16 Feb 2009 06:32:20 -0000 1.32 *************** *** 278,281 **** --- 278,282 ---- os.rename(this_pyd, this_dest) print "renamed '%s'->'%s.old'" % (this_pyd, this_pyd) + file_created(this_pyd+".old") except os.error, exc: print "FAILED to rename '%s': %s" % (this_pyd, exc) |