From 471794c461bc2c3ab12a6a61c9cfc4463c2459d0 Mon Sep 17 00:00:00 2001 From: Nahuel Lofeudo Date: Sun, 23 Apr 2023 15:58:09 +0100 Subject: [PATCH] In the status line, don't show the current time's seconds. --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index eeb65a7..584d155 100755 --- a/main.py +++ b/main.py @@ -101,7 +101,7 @@ def update_screen(updates: list[ArrivalTime]) -> None: ) # Add the current time to the bottom line - datetime_text = "Current time: " + datetime.today().strftime("%d/%m/%Y %H:%M:%S") + datetime_text = "Current time: " + datetime.today().strftime("%d/%m/%Y %H:%M") write_line(5, datetime_text) def clear_screen() -> None: