diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-12 08:22:18 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-02 08:24:02 +0100 |
commit | ef1df516512587ad415f76a9626620992d660e45 (patch) | |
tree | 6b4e30dbc7ab8cb17fb877c82ccf7593138c88cc /bitbake/lib/bb/cooker.py | |
parent | deca1476459ab306dc5c80171fdf0d227decbea4 (diff) | |
download | poky-ef1df516512587ad415f76a9626620992d660e45.tar.gz |
bitbake: bitbake: Drop futures usage since we're python 3
(Bitbake rev: bf25f05ce4db11466e62f134f9a6916f886a93d9)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index fb86446d47..11f17efa6f 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py | |||
@@ -22,7 +22,7 @@ | |||
22 | # with this program; if not, write to the Free Software Foundation, Inc., | 22 | # with this program; if not, write to the Free Software Foundation, Inc., |
23 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. | 23 | # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
24 | 24 | ||
25 | from __future__ import print_function | 25 | |
26 | import sys, os, glob, os.path, re, time | 26 | import sys, os, glob, os.path, re, time |
27 | import atexit | 27 | import atexit |
28 | import itertools | 28 | import itertools |