diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2019-09-03 07:49:56 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-09-03 10:18:58 +0100 |
commit | 3e21648723c0b2e0c806fc5a446a1ca253c9a62f (patch) | |
tree | 761d56d5bf785a011429f6cb388a8a090ee608b4 /bitbake/lib/bb/fetch2 | |
parent | 88a49ffbd8f415356be268ea68b01d6adacb93c2 (diff) | |
download | poky-3e21648723c0b2e0c806fc5a446a1ca253c9a62f.tar.gz |
bitbake: utils: Fix movefile() exception handling with python3
* with python3 this fails with:
File: 'bitbake/lib/bb/utils.py', lineno: 799, function: movefile
0795: try:
0796: os.rename(src, destpath)
0797: renamefailed = 0
0798: except Exception as e:
*** 0799: if e[0] != errno.EXDEV:
0800: # Some random error.
0801: print("movefile: Failed to move", src, "to", dest, e)
0802: return None
0803: # Invalid cross-device-link 'bind' mounted or actually Cross-Device
Exception: TypeError: 'OSError' object is not subscriptable
(Bitbake rev: d6e43c443ddbbe467c4380c48d2bc28ae18504a1)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2')
0 files changed, 0 insertions, 0 deletions