From 754eae4a50d7d6e108786110528389b15aa977a0 Mon Sep 17 00:00:00 2001 From: redfast00 Date: Fri, 3 Jun 2022 19:27:11 +0200 Subject: [PATCH] Don't title username --- app/notification.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/notification.py b/app/notification.py index 14ee065..33dd42e 100644 --- a/app/notification.py +++ b/app/notification.py @@ -21,7 +21,7 @@ def webhook_text(order: Order) -> typing.Optional[str]: url_for("order_bp.order_from_slug", order_slug=order.slug, _external=True), order.location_name, remaining_minutes(order.stoptime), - order.courier.username.title(), + order.courier.username, ) # pylint: disable=C0209