From c9ba72ebc5b02e8c62309c36e0c2ff671d04143e Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Wed, 31 Oct 2018 10:27:14 +0100 Subject: [PATCH] Fix a typo --- src/pretix/base/models/orders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/base/models/orders.py b/src/pretix/base/models/orders.py index 01df920da5..1c08122067 100644 --- a/src/pretix/base/models/orders.py +++ b/src/pretix/base/models/orders.py @@ -456,7 +456,7 @@ class Order(LockModel, LoggedModel): error_messages = { 'late_lastdate': _("The payment can not be accepted as the last date of payments configured in the " "payment settings is over."), - 'late': _("The payment can not be accepted as it the order is expired and you configured that no late " + 'late': _("The payment can not be accepted as the order is expired and you configured that no late " "payments should be accepted in the payment settings."), 'require_approval': _('This order is not yet approved by the event organizer.') }