From 8a647f8fd0cebaabbf80f82d3710a26ef8d7229c Mon Sep 17 00:00:00 2001 From: Andy Fiddaman Date: Mon, 12 Oct 2020 12:28:36 +0000 Subject: 13217 Allow building with python 3.9 Reviewed by: Peter Tribble Reviewed by: Hans Rosenfeld Approved by: Dan McDonald --- usr/src/tools/scripts/wsdiff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr/src/tools/scripts/wsdiff.py') 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 -- cgit v1.2.3