Remove extraneous colon

This commit is contained in:
Dimitri Lozeve 2022-09-19 19:36:16 +02:00
parent 476dd885d1
commit eeeea1bb8d

View file

@ -51,8 +51,8 @@
(parse-markup (parse-markup
(format "[bold]Prochains départs de [green]~a[/green] " station-name)))) (format "[bold]Prochains départs de [green]~a[/green] " station-name))))
(when datetime (when datetime
(display (format "le ~a à ~a :" (display (format "le ~a à ~a "
(date->string datetime "~a ~d ~b ~Y") (date->string datetime "~d ~b ~Y")
(date->string datetime "~H:~M")))) (date->string datetime "~H:~M"))))
(displayln (if (eq? style 'markdown) ":\n" ":")) (displayln (if (eq? style 'markdown) ":\n" ":"))
(display-departures-table departures style: style) (display-departures-table departures style: style)