diff options
author | Fabio Berton <fabio.berton@ossystems.com.br> | 2016-08-23 08:48:42 -0300 |
---|---|---|
committer | Fabio Berton <fabio.berton@ossystems.com.br> | 2016-08-31 10:21:27 -0300 |
commit | 9681e957fbf3370a6905b54e42dac17fa976db70 (patch) | |
tree | 350794d51e4bbed2048123b0e5879204d00529f2 /scripts/contrib/python | |
parent | 1b807313f3e2d841922189bc7777a6d10bc83dcb (diff) | |
download | openembedded-core-9681e957fbf3370a6905b54e42dac17fa976db70.tar.gz openembedded-core-9681e957fbf3370a6905b54e42dac17fa976db70.tar.bz2 openembedded-core-9681e957fbf3370a6905b54e42dac17fa976db70.zip |
python-3.5-manifest: Rename Queue module to queue
The Queue module has been renamed to queue in Python 3.
Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Signed-off-by: Ross Burton <ross.burton@intel.com>
(cherry picked from commit e19a430da2ef60b2c6cf6a67210ec1a7b292c8ca)
Diffstat (limited to 'scripts/contrib/python')
-rwxr-xr-x | scripts/contrib/python/generate-manifest-3.5.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/contrib/python/generate-manifest-3.5.py b/scripts/contrib/python/generate-manifest-3.5.py index 367b4b8b4b..d9d6923a2d 100755 --- a/scripts/contrib/python/generate-manifest-3.5.py +++ b/scripts/contrib/python/generate-manifest-3.5.py @@ -361,7 +361,7 @@ if __name__ == "__main__": "test" ) # package m.addPackage( "${PN}-threading", "Python threading & synchronization support", "${PN}-core ${PN}-lang", - "_threading_local.* dummy_thread.* dummy_threading.* mutex.* threading.* Queue.*" ) + "_threading_local.* dummy_thread.* dummy_threading.* mutex.* threading.* queue.*" ) m.addPackage( "${PN}-tkinter", "Python Tcl/Tk bindings", "${PN}-core", "lib-dynload/_tkinter.*.so lib-tk tkinter" ) # package |