From a37a62a15c7867b7f5c9c63aca2a2483d2e6ae61 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 7 Feb 2018 11:29:38 +0000 Subject: [PATCH] utils: Fix typo Signed-off-by: Richard Purdie --- scripts/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/utils.py b/scripts/utils.py index 88677a7..244f38d 100644 --- a/scripts/utils.py +++ b/scripts/utils.py @@ -153,7 +153,7 @@ def printheader(msg, timestamp=True): print("====================================================================================================") if timestamp: print("%s (%s)" % (msg, time.time())) - else + else: print(msg) print("====================================================================================================") print("")