From 56772533e64cb65c666f4352583ecd3c82f1c055 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Wed, 18 Sep 2019 14:21:25 +0100 Subject: [PATCH] Replace negative contraction with Cannot In accordance with style guide --- app/main/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main/forms.py b/app/main/forms.py index 9762917b5..68c749dec 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -1422,7 +1422,7 @@ class BrandingOptionsEmail(StripWhitespaceForm): self.something_else_is_only_option or self.options.data == self.FALLBACK_OPTION_VALUE ) and not field.data: - raise ValidationError('Can’t be empty') + raise ValidationError('Cannot be empty') if self.options.data != self.FALLBACK_OPTION_VALUE: field.data = ''