From 5584c12d0af7d18d130893c7b21fd494b8f3bf3a Mon Sep 17 00:00:00 2001 From: Tydon K Date: Thu, 22 Jun 2017 01:35:56 -0700 Subject: [PATCH] Fixed typo in Helptext (#530) --- src/pretix/base/models/items.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pretix/base/models/items.py b/src/pretix/base/models/items.py index a72213669f..a7593276fb 100644 --- a/src/pretix/base/models/items.py +++ b/src/pretix/base/models/items.py @@ -214,7 +214,7 @@ class Item(LoggedModel): allow_cancel = models.BooleanField( verbose_name=_('Allow product to be canceled'), default=True, - help_text=_('If this is active and the general event settings allo wit, orders containing this product can be ' + help_text=_('If this is active and the general event settings allow it, orders containing this product can be ' 'canceled by the user until the order is paid for. Users cannot cancel paid orders on their own ' 'and you can cancel orders at all times, regardless of this setting') )