summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cooker.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-12 08:22:18 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-16 23:32:40 +0100
commite2f4d9f1ec694768b223decb59a9c768a2da962d (patch)
tree8bc0781870dbaf38f859079b9b9a012761be1460 /bitbake/lib/bb/cooker.py
parent82844a07596b5714b0245eae14952e5479bb432a (diff)
downloadpoky-e2f4d9f1ec694768b223decb59a9c768a2da962d.tar.gz
bitbake: bitbake: Drop futures usage since we're python 3
(Bitbake rev: 3310b85801aff3b315084c53ce53d0119c002b6c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r--bitbake/lib/bb/cooker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 5b76b4d20d..cdafe7efc2 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
25from __future__ import print_function 25
26import sys, os, glob, os.path, re, time 26import sys, os, glob, os.path, re, time
27import atexit 27import atexit
28import itertools 28import itertools