Just ignore all OSError for rm_rf

This commit is contained in:
Cheng Zhao 2015-07-03 15:07:11 +08:00
Родитель 518ec36511
Коммит 02f3d7a25e
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -133,9 +133,8 @@ def make_zip(zip_file_path, files, dirs):
def rm_rf(path):
try:
shutil.rmtree(path)
except OSError as e:
if e.errno != errno.ENOENT and e.errno != errno.EIO:
raise
except OSError:
pass
def safe_unlink(path):