commit | b7ff766f55d306505dd70893b24f000389cc6725 | [log] [tgz] |
---|---|---|
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | Thu Feb 11 12:03:22 2021 +0100 |
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | Sun Feb 14 11:32:04 2021 +0100 |
tree | ea047196d0b01763798a90b3d1fc8f2364f109ad | |
parent | 812f6e0ec652dd3264453158dac1fe8db57c7a46 [diff] |
buildman: 'Thread' object has no attribute 'isAlive' The isAlive() method was deprecated in Python 3.8 and has been removed in Python 3.9. See https://bugs.python.org/issue37804. Use is_alive() instead. Since Python 2.6 is_alive() has been a synonym for isAlive(). So there should be no problems for users using elder Python 3 versions. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by: Simon Glass <sjg@chromium.org>