Commit e0658360 by Karthikeyan Singaravelan Committed by Mariusz Kupidura

Use is_alive in favour of isAlive for Python 3.9 compatibility.

parent fb12ae80
...@@ -111,7 +111,7 @@ class Exploit(BaseExploit): ...@@ -111,7 +111,7 @@ class Exploit(BaseExploit):
start = time.time() start = time.time()
try: try:
while thread.isAlive(): while thread.is_alive():
thread.join(1) thread.join(1)
except KeyboardInterrupt: except KeyboardInterrupt:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment