From dd64766d0298c0879cdc6a1a6c504e5dceb21af6 Mon Sep 17 00:00:00 2001 From: Piotr Machowski Date: Tue, 14 Jan 2020 23:53:31 +0100 Subject: [PATCH] Added missing comma --- custom_components/impk/sensor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/impk/sensor.py b/custom_components/impk/sensor.py index af04898..1d54a25 100644 --- a/custom_components/impk/sensor.py +++ b/custom_components/impk/sensor.py @@ -153,7 +153,7 @@ def get_html_departures(self): @staticmethod def departure_to_str(dep): - return '{} kier. {}: {} ({}m)'.format(dep["line"], dep["direction"], dep["departure"], + return '{}, kier. {}: {} ({}m)'.format(dep["line"], dep["direction"], dep["departure"], dep["time_to_departure"]) @staticmethod