summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/base.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-21 12:25:02 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-21 22:26:32 +0100
commitffe9604be2556b8b5c3f98bcc5283b00bf0c0dab (patch)
tree67685ecaeb22f93d6a78f707b69170b0bbd270b8 /meta/lib/oeqa/selftest/base.py
parent02986886fc40c0fcd33359a279ba9520fd5cac2a (diff)
downloadpoky-ffe9604be2556b8b5c3f98bcc5283b00bf0c0dab.tar.gz
meta/selftest/scripts: Use print function for python3 compatibility
Used print function instead of print statement to make the code work in python 3. [Changes from both Ed and Richard] (From OE-Core rev: ced1995694c394d92cb82fb9c25a33dc027a3b69) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> 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