mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-09 17:45:32 -04:00
fix broken string
This commit is contained in:
committed by
Chris Hill-Scott
parent
e4f0656a32
commit
12d1b64a90
@@ -69,7 +69,7 @@ def create_api_key(service_id):
|
|||||||
]
|
]
|
||||||
form = CreateKeyForm(key_names)
|
form = CreateKeyForm(key_names)
|
||||||
form.key_type.choices = filter(None, [
|
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,
|
if not current_service['restricted'] else None,
|
||||||
(KEY_TYPE_TEST, 'Simulate sending messages to anyone'),
|
(KEY_TYPE_TEST, 'Simulate sending messages to anyone'),
|
||||||
(KEY_TYPE_TEAM, 'Only send messages to your team or whitelist')
|
(KEY_TYPE_TEAM, 'Only send messages to your team or whitelist')
|
||||||
|
|||||||
Reference in New Issue
Block a user