From a9ef9633d09ff3fbac2a1c07be16fb99dd054726 Mon Sep 17 00:00:00 2001 From: Kaaninchen <124433727+kaaninchen@users.noreply.github.com> Date: Sat, 18 Jul 2026 12:51:48 +0200 Subject: [PATCH] =?UTF-8?q?ausf=C3=BChrlicheres=20logging?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/handlers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers.py b/src/handlers.py index 3a86403..f6d6e05 100644 --- a/src/handlers.py +++ b/src/handlers.py @@ -68,7 +68,7 @@ async def _schedule_next_umstieg(bot, arrival_iso): if wait_seconds > 0: remaining = str(timedelta(seconds=wait_seconds)) - logger(f"In {remaining} gehts weiter!...") + logger(f"Um {arrival.strftime('%H:%M:%S')} gehts weiter (in {remaining.split("."[0])})!...") await asyncio.sleep(wait_seconds) logger("Zug angekommen, wähle neue Verbindung...") await rename_vc(bot, scheduled=True)