From 60447a58e3b62d18d7bc31534d90ffc9409d85ad Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 1 Jun 2026 15:53:28 +0000 Subject: [PATCH] =?UTF-8?q?Service=20deletes=20other-file=20temp=20paths?= =?UTF-8?q?=20after=20run=20=F0=9F=9F=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/pashub_fetcher/pashub_service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pashub_fetcher/pashub_service.py b/backend/pashub_fetcher/pashub_service.py index c9fce806..a4b34cab 100644 --- a/backend/pashub_fetcher/pashub_service.py +++ b/backend/pashub_fetcher/pashub_service.py @@ -110,7 +110,7 @@ class PashubService: if request.get_other_files: pass # TODO: process downloaded.other - for file_path in downloaded.core: + for file_path in downloaded.core + downloaded.other: try: os.remove(file_path) except OSError: