From 979af8298951b715f2d0c3745e351cb085a09798 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Wed, 13 Nov 2024 07:55:24 -0800 Subject: [PATCH] Use right args and call --- src/documents/views.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/documents/views.py b/src/documents/views.py index c8062f9ca..312409e9e 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -2017,9 +2017,8 @@ class BulkDownloadView(GenericAPIView): settings.SCRATCH_DIR.mkdir(parents=True, exist_ok=True) temp_dir = Path( - tempfile.TemporaryDirectory( + tempfile.mkdtemp( dir=settings.SCRATCH_DIR, - delete=False, ), )