Projet

Général

Profil

0001-Use-a-valid-python-identifier-for-lable-of-SAML-2.0-.patch

Benjamin Dauvergne, 06 mars 2015 15:07

Télécharger (969 octets)

Voir les différences:

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(-)
src/authentic2/idp/saml/__init__.py
34 34

  
35 35
    def get_idp_backends(self):
36 36
        return ['authentic2.idp.saml.backend.SamlBackend']
37 37

  
38 38
if django.VERSION >= (1,7):
39 39
    from django.apps import AppConfig
40 40
    class SAML2IdPConfig(AppConfig):
41 41
        name = 'authentic2.idp.saml'
42
        label = 'SAML IdP'
42
        label = 'authentic2_idp_saml'
43 43
    default_app_config = 'authentic2.idp.saml.SAML2IdPConfig'
44 44

  
45
-