]> git.seodisparate.com - AnotherAURHelper/commitdiff
Fix build log not having space after timestamp
authorStephen Seo <seo.disparate@gmail.com>
Mon, 11 Sep 2023 01:39:05 +0000 (10:39 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Mon, 11 Sep 2023 01:39:05 +0000 (10:39 +0900)
update.py

index 08666adf2f2c2e6aa40fab15fda029f746fcd76e..420c17cf86372c6cba2ae6e4a954e1e146f04d26 100755 (executable)
--- 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