From c373e3771add232309faa9c2d790733bb0807246 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Wed, 26 Apr 2017 13:21:27 +0100 Subject: [PATCH] Make label for key type grammatically correct MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Wasn’t changed when we changed the options. Matches the ‘Name for this key’ label on the field above. --- 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 60ee4df05..4bc100129 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -388,7 +388,7 @@ class CreateKeyForm(Form): super(CreateKeyForm, self).__init__(*args, **kwargs) key_type = RadioField( - 'What should Notify do when you use this key?', + 'Type of key', validators=[ DataRequired() ]