فهرست منبع

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

- GH #24
Daniel-Constantin Mierla 1 سال پیش
والد
کامیت
7ae48e7689
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  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: