fix broken string

This commit is contained in:
Leo Hemsted
2016-10-11 17:22:30 +01:00
committed by Chris Hill-Scott
parent e4f0656a32
commit 12d1b64a90

View File

@@ -69,7 +69,7 @@ def create_api_key(service_id):
]
form = CreateKeyForm(key_names)
form.key_type.choices = filter(None, [
(KEY_TYPE_NORMAL, 'Send messages to anyone{}')
(KEY_TYPE_NORMAL, 'Send messages to anyone')
if not current_service['restricted'] else None,
(KEY_TYPE_TEST, 'Simulate sending messages to anyone'),
(KEY_TYPE_TEAM, 'Only send messages to your team or whitelist')