From 8a0ea009866c7765ceb55341b45d40d80d8ba080 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 4 Jan 2026 22:05:11 +0530 Subject: [PATCH] ... --- src/calibre/db/fts/pool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/db/fts/pool.py b/src/calibre/db/fts/pool.py index c5ef3c30f1..e1fb0e2c3b 100644 --- a/src/calibre/db/fts/pool.py +++ b/src/calibre/db/fts/pool.py @@ -207,7 +207,7 @@ class Pool: self.initialized.clear() def join(self): - with suppress(AttributeError): + with suppress(AttributeError, PythonFinalizationError): self.supervisor_thread.join() for w in self.workers: w.join()