We don't want rmtree errors ignored, we want them handled by our Windows-is-special handler.

This commit is contained in:
Carl Meyer 2011-03-21 21:52:02 -04:00
parent 651e1af613
commit bbe66378b4
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ __all__ = ['rmtree', 'display_path', 'backup_dir',
'cache_download', 'unpack_file']
def rmtree(dir, ignore_errors=True):
def rmtree(dir, ignore_errors=False):
shutil.rmtree(dir, ignore_errors=ignore_errors,
onerror=rmtree_errorhandler)