From aa66a5e67bba1182ec8c44693fb5b9ff24d0b1b8 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 29 Apr 2022 20:08:37 +0530 Subject: [PATCH] name the updates thread --- src/calibre/gui2/update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/update.py b/src/calibre/gui2/update.py index a3b11e6b09..25770d7c17 100644 --- a/src/calibre/gui2/update.py +++ b/src/calibre/gui2/update.py @@ -74,7 +74,7 @@ class CheckForUpdates(Thread): daemon = True def __init__(self, parent): - Thread.__init__(self) + Thread.__init__(self, name='CheckForUpdates') self.shutdown_event = Event() self.signal = Signal(parent)