From 4747502ff6d5bf374a21e6aa9ac335f643ce10ad Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Fri, 6 Mar 2015 15:06:23 +0100 Subject: [PATCH] Use a valid python identifier for lable of SAML 2.0 IdP AppConfig --- src/authentic2/idp/saml/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/authentic2/idp/saml/__init__.py b/src/authentic2/idp/saml/__init__.py index e397590..ef0d55b 100644 --- a/src/authentic2/idp/saml/__init__.py +++ b/src/authentic2/idp/saml/__init__.py @@ -34,11 +34,11 @@ class Plugin(object): def get_idp_backends(self): return ['authentic2.idp.saml.backend.SamlBackend'] if django.VERSION >= (1,7): from django.apps import AppConfig class SAML2IdPConfig(AppConfig): name = 'authentic2.idp.saml' - label = 'SAML IdP' + label = 'authentic2_idp_saml' default_app_config = 'authentic2.idp.saml.SAML2IdPConfig' -- 1.9.1