Browse Source

iorpc.py: replace deprecated isAlive() with is_alive()

- GH #24
Daniel-Constantin Mierla 1 year ago
parent
commit
7ae48e7689
1 changed files with 1 additions and 1 deletions
  1. 1 1
      kamcli/iorpc.py

+ 1 - 1
kamcli/iorpc.py

@@ -252,7 +252,7 @@ def command_jsonrpc_fifo(
     while waitrun:
         try:
             tiofifo.join(500)
-            if not tiofifo.isAlive():
+            if not tiofifo.is_alive():
                 waitrun = False
                 break
         except KeyboardInterrupt: