summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/base.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-11 10:28:38 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-16 23:32:39 +0100
commit22c8ed6484e0ee9328e3844c9e794f3d89ebb9f7 (patch)
treeb7dea0b7b46d5eeb24bd79e5d78c19b0b3eabd26 /meta/lib/oeqa/selftest/base.py
parentbda68e63e2b002069200b8c810225bcba109dce3 (diff)
downloadpoky-22c8ed6484e0ee9328e3844c9e794f3d89ebb9f7.tar.gz
meta: print fixes
(From OE-Core rev: a61ef5d2ae479a2db6b020e1be55eeaa331ab756) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/base.py')
-rw-r--r--meta/lib/oeqa/selftest/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/base.py b/meta/lib/oeqa/selftest/base.py
index e10455edc1..b5a52fe57a 100644
--- a/meta/lib/oeqa/selftest/base.py
+++ b/meta/lib/oeqa/selftest/base.py
@@ -67,7 +67,7 @@ class oeSelfTest(unittest.TestCase):
67 machine = custommachine 67 machine = custommachine
68 machine_conf = 'MACHINE ??= "%s"\n' % machine 68 machine_conf = 'MACHINE ??= "%s"\n' % machine
69 self.set_machine_config(machine_conf) 69 self.set_machine_config(machine_conf)
70 print 'MACHINE: %s' % machine 70 print('MACHINE: %s' % machine)
71 71
72 # tests might need their own setup 72 # tests might need their own setup
73 # but if they overwrite this one they have to call 73 # but if they overwrite this one they have to call