From 1077d9acc45b86e6dae9474343f3f450cd3b5e19 Mon Sep 17 00:00:00 2001 From: JuliusFreudenberger Date: Fri, 18 Oct 2019 12:33:11 +0200 Subject: [PATCH] Added parentheses for delay The delay is directly calculated in the departure time, so the delay is now given in parentheses to make that clear --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 345e333..15e0a87 100644 --- a/bot.py +++ b/bot.py @@ -121,7 +121,7 @@ def get_vvs_departures(query): reply.append( "Line " + station['number'] + " to \"" + station['direction'] + "\" at " + station['departureTime']['hour'].zfill(2) + ':' + station['departureTime']['minute'].zfill(2) - + " +" + str(station['delay'])) + + " (+" + str(station['delay']) + ")") printed_departures += 1 if printed_departures >= query.departure_count: break