This commit is contained in:
Tobias Kunze
2017-12-09 15:21:07 +01:00
committed by Raphael Michel
parent 1011b67f0a
commit 3ece911018
3 changed files with 3 additions and 3 deletions

View File

@@ -165,7 +165,7 @@ class VoucherBulkForm(VoucherForm):
data = super().clean()
if Voucher.objects.filter(code__in=data['codes'], event=self.instance.event).exists():
raise ValidationError(_('A voucher with one of this codes already exists.'))
raise ValidationError(_('A voucher with one of these codes already exists.'))
return data