From 35732f6ca7d028f6e5c0f9124120909634f3bcac Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Thu, 12 Mar 2020 16:20:19 -0700 Subject: [PATCH] pagekite: Fix an error message in custom services form There is no page called 'Standard Services' anymore. Signed-off-by: Sunil Mohan Adapa Reviewed-by: Veiko Aasa --- plinth/modules/pagekite/forms.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plinth/modules/pagekite/forms.py b/plinth/modules/pagekite/forms.py index 91792b779..534f85d1c 100644 --- a/plinth/modules/pagekite/forms.py +++ b/plinth/modules/pagekite/forms.py @@ -172,8 +172,7 @@ class AddCustomServiceForm(BaseCustomServiceForm): except KeyError: is_predefined = False if is_predefined: - msg = _('This service is available as a standard service. Please ' - 'use the "Standard Services" page to enable it.') + msg = _('This service is already available as a standard service.') raise forms.ValidationError(msg) return cleaned_data