Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6eb6de commit c20d70dCopy full SHA for c20d70d
pybombs/utils/subproc.py
@@ -240,7 +240,7 @@ def monitor_process(args, **kwargs):
240
args=(quit_event, args, kwargs)
241
)
242
monitor_thread.start()
243
- while monitor_thread.isAlive:
+ while monitor_thread.is_alive:
244
# Try if it's finished:
245
monitor_thread.join(1)
246
if quit_event.is_set() or not monitor_thread.is_alive():
0 commit comments