From a64fcbfb5caae67e2fc72a65d431741e2a23ada9 Mon Sep 17 00:00:00 2001 From: Andrew Senetar Date: Sat, 19 Mar 2022 17:00:50 -0500 Subject: [PATCH] Fix deprecation warning from sqlite --- hscommon/sqlite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hscommon/sqlite.py b/hscommon/sqlite.py index 53f6ba82..686ef5ab 100644 --- a/hscommon/sqlite.py +++ b/hscommon/sqlite.py @@ -45,7 +45,7 @@ class _ActualThread(threading.Thread): self._lock = threading.Lock() self._run = True self.lastrowid = -1 - self.setDaemon(True) + self.daemon = True self.start() def _query(self, query):