From 80fecc44761fa38ccf2e4dc6897b9f1f0c9c1ed0 Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Mon, 30 May 2016 18:14:46 +0300 Subject: scripts: python3: Use print function Used print function instead of print statement to make the code work in python 3. Signed-off-by: Ed Bartosh Signed-off-by: Richard Purdie --- scripts/test-remote-image | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/test-remote-image') diff --git a/scripts/test-remote-image b/scripts/test-remote-image index 9c5b0158d5..7a00db92c0 100755 --- a/scripts/test-remote-image +++ b/scripts/test-remote-image @@ -289,7 +289,7 @@ class HwAuto(): result = bitbake("%s -c testimage" % image_type, ignore_status=True, postconfig=postconfig) testimage_results = ftools.read_file(os.path.join(get_bb_var("T", image_type), "log.do_testimage")) log.info('Runtime tests results for %s:' % image_type) - print testimage_results + print(testimage_results) return result # Start the procedure! -- cgit 1.2.3-korg