Index: file_util.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/distutils/file_util.py,v retrieving revision 1.11 diff -r1.11 file_util.py 38a39,45 > if os.path.exists(dst): > try: > os.unlink(dst) > except os.error, (errno, errstr): > raise DistutilsFileError, \ > "could not delete '%s': %s" % (dst, errstr) >