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:
parent
651e1af613
commit
bbe66378b4
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue