diff options
author | Andy Fiddaman <omnios@citrus-it.co.uk> | 2020-10-12 12:28:36 +0000 |
---|---|---|
committer | Andy Fiddaman <omnios@citrus-it.co.uk> | 2020-10-15 13:44:22 +0000 |
commit | 8a647f8fd0cebaabbf80f82d3710a26ef8d7229c (patch) | |
tree | 2b4efb0af4d96a75c3daa8314cb1688c1a43c32a /usr/src/tools/scripts/wsdiff.py | |
parent | 35abe3277cc67d1a650f8fd7ce718b89fbece04d (diff) | |
download | illumos-joyent-8a647f8fd0cebaabbf80f82d3710a26ef8d7229c.tar.gz |
13217 Allow building with python 3.9
Reviewed by: Peter Tribble <peter.tribble@gmail.com>
Reviewed by: Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org>
Approved by: Dan McDonald <danmcd@joyent.com>
Diffstat (limited to 'usr/src/tools/scripts/wsdiff.py')
-rw-r--r-- | usr/src/tools/scripts/wsdiff.py | 2 |
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 |