From d18334100e9c201e24fc52df4054ed91a4dedddf Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Thu, 23 Feb 2017 10:48:10 +0000 Subject: [PATCH] Remove HTML entity from permission choice MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Not sure why we had a non-breaking space in here because it didn’t wrap onto two lines anyway. And it wasn’t working because it was showing up encoded, rather than as a raw entity. --- 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 e3a8a97a4..7e2e427a5 100644 --- a/app/main/forms.py +++ b/app/main/forms.py @@ -153,7 +153,7 @@ class RegisterUserFromInviteForm(Form): class PermissionsForm(Form): send_messages = BooleanField("Send messages from existing templates") - manage_service = BooleanField("Modify this service, its team, and its templates") + manage_service = BooleanField("Modify this service, its team, and its templates") manage_api_keys = BooleanField("Create and revoke API keys")