From 35266259a7eb2103ddacf0e1aa0e2f9898f408a0 Mon Sep 17 00:00:00 2001 From: Brian Daniels Date: Thu, 3 Jan 2019 12:04:36 -0600 Subject: [PATCH] Fix Python 3 syntax in rtc host test --- TESTS/host_tests/rtc_calc_auto.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TESTS/host_tests/rtc_calc_auto.py b/TESTS/host_tests/rtc_calc_auto.py index 77b52a0abc..65904c912c 100644 --- a/TESTS/host_tests/rtc_calc_auto.py +++ b/TESTS/host_tests/rtc_calc_auto.py @@ -117,7 +117,7 @@ class RTC_time_calc_test(BaseHostTest): self.send_kv("passed", str(response)) else: self.send_kv("failed", 0) - print "expected = %d, result = %d" % (expected_timestamp , actual_timestamp) + print("expected = %d, result = %d" % (expected_timestamp , actual_timestamp)) # calculate next date if (self.first):