Fix deprecation warning from sqlite

This commit is contained in:
Andrew Senetar 2022-03-19 17:00:50 -05:00
parent cff07a12d6
commit a64fcbfb5c
Signed by: arsenetar
GPG Key ID: C63300DCE48AB2F1
1 changed files with 1 additions and 1 deletions

View File

@ -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):