summaryrefslogtreecommitdiff
path: root/usr/src/tools/scripts/wsdiff.py
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/tools/scripts/wsdiff.py')
-rw-r--r--usr/src/tools/scripts/wsdiff.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/tools/scripts/wsdiff.py b/usr/src/tools/scripts/wsdiff.py
index 225ea21ce5..9781349a7f 100644
--- a/usr/src/tools/scripts/wsdiff.py
+++ b/usr/src/tools/scripts/wsdiff.py
@@ -1461,7 +1461,7 @@ def main() :
# Wait for the threads to finish and do cleanup if interrupted
debug("Waiting for the threads to finish")
while True:
- if not True in [thread.isAlive() for thread in mythreads]:
+ if not True in [thread.is_alive() for thread in mythreads]:
break
else:
# Some threads are still going