]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
moveconfig: Avoid deprecation warning for setDaemon
authorSimon Glass <sjg@chromium.org>
Sat, 23 Sep 2023 19:43:51 +0000 (13:43 -0600)
committerSimon Glass <sjg@chromium.org>
Wed, 4 Oct 2023 15:25:20 +0000 (09:25 -0600)
Use the recommended new way of setting a thread to be a daemon.

This avoids a warning:

   DeprecationWarning: setDaemon() is deprecated, set the daemon attribute
      instead

Signed-off-by: Simon Glass <sjg@chromium.org>
tools/moveconfig.py

index 880a5594be0504c895e48da37e5264aba675ce08..2f7dee88c7ee095875fe319738f6994162b04506 100755 (executable)
@@ -2029,7 +2029,7 @@ doc/develop/moveconfig.rst for documentation.'''
     config_db = {}
     db_queue = queue.Queue()
     t = DatabaseThread(config_db, db_queue)
-    t.setDaemon(True)
+    t.daemon = True
     t.start()
 
     check_clean_directory()