From ca2edae7c3585204a11f6d9d69351d37880bf761 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sun, 15 May 2016 10:23:25 +0100 Subject: oeqa: Print function python3 fixes Use print functions for comptibility with python3. (From OE-Core rev: 0c89a8a276b67a9292ee3100003c789126bd9ea9) Signed-off-by: Richard Purdie --- meta/lib/oeqa/runtime/connman.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/lib/oeqa/runtime/connman.py') diff --git a/meta/lib/oeqa/runtime/connman.py b/meta/lib/oeqa/runtime/connman.py index bd9dba3bd0..003fefe2ce 100644 --- a/meta/lib/oeqa/runtime/connman.py +++ b/meta/lib/oeqa/runtime/connman.py @@ -27,5 +27,5 @@ class ConnmanTest(oeRuntimeTest): def test_connmand_running(self): (status, output) = self.target.run(oeRuntimeTest.pscmd + ' | grep [c]onnmand') if status != 0: - print self.service_status("connman") + print(self.service_status("connman")) self.fail("No connmand process running") -- cgit v1.2.3-54-g00ecf