[pywin32-checkins] pywin32/isapi install.py,1.10,1.11
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2007-03-07 01:47:40
|
Update of /cvsroot/pywin32/pywin32/isapi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15687 Modified Files: install.py Log Message: Only write the 'Deleted Virtual Directory' message if it was actually deleted. Index: install.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/isapi/install.py,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** install.py 3 Jan 2007 03:39:37 -0000 1.10 --- install.py 7 Mar 2007 01:47:39 -0000 1.11 *************** *** 434,437 **** --- 434,438 ---- parent = GetObject(directory.Parent) parent.Delete(directory.Class, directory.Name) + log (1, "Deleted Virtual Directory: %s" % (vd.Name,)) except: exc_val = sys.exc_info()[1] *************** *** 439,443 **** _CallHook(vd, "PostRemove", options) - log (1, "Deleted Virtual Directory: %s" % (vd.Name,)) for filter_def in params.Filters: --- 440,443 ---- |