소스 검색

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: