From 51afe3a2b0ba0a9d3c503bf42e3bdfe4bda0c781 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Mon, 11 Sep 2023 10:39:05 +0900 Subject: [PATCH] Fix build log not having space after timestamp --- update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.py b/update.py index 08666ad..420c17c 100755 --- a/update.py +++ b/update.py @@ -1145,7 +1145,7 @@ def handle_output_stream( if not limit_reached: if other_state["is_log_timed"]: nowstring = get_datetime_timezone_now(other_state) - line = nowstring + line + line = nowstring + " " + line log_count += len(line) if log_count > other_state["log_limit"]: limit_reached = True