summaryrefslogtreecommitdiff
path: root/cxmanage_api/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'cxmanage_api/__init__.py')
-rw-r--r--cxmanage_api/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cxmanage_api/__init__.py b/cxmanage_api/__init__.py
index 4e7c0e4..2bb8907 100644
--- a/cxmanage_api/__init__.py
+++ b/cxmanage_api/__init__.py
@@ -39,7 +39,7 @@ import tempfile
WORK_DIR = tempfile.mkdtemp(prefix="cxmanage_api-")
-atexit.register(lambda: shutil.rmtree(WORK_DIR))
+atexit.register(lambda: shutil.rmtree(WORK_DIR, ignore_errors=True))
def temp_file():