1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

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

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)