From 0c89a8a276b67a9292ee3100003c789126bd9ea9 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. Signed-off-by: Richard Purdie --- meta/lib/oeqa/runtime/parselogs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/lib/oeqa/runtime/parselogs.py') diff --git a/meta/lib/oeqa/runtime/parselogs.py b/meta/lib/oeqa/runtime/parselogs.py index dec9ebe874..a93660131d 100644 --- a/meta/lib/oeqa/runtime/parselogs.py +++ b/meta/lib/oeqa/runtime/parselogs.py @@ -262,7 +262,7 @@ class ParseLogsTest(oeRuntimeTest): self.write_dmesg() log_list = self.get_local_log_list(self.log_locations) result = self.parse_logs(self.errors, self.ignore_errors, log_list) - print self.getHardwareInfo() + print(self.getHardwareInfo()) errcount = 0 for log in result: self.msg += "Log: "+log+"\n" -- cgit 1.2.3-korg