Another bundle of Sentry bugfixes (#2769)

* Don't raise OSError on errors

* Fix silly typo
tox-dependencies
Eric Holscher 2017-04-04 13:20:13 -07:00 committed by Anthony
parent 1bb7e07b73
commit 0f75e836ff
1 changed files with 1 additions and 1 deletions

View File

@ -875,7 +875,7 @@ def remove_dir(path):
can kill things on the build server.
"""
log.info("Removing %s", path)
shutil.rmtree(path)
shutil.rmtree(path, ignore_errors=True)
@task(queue='web')