Projet

Général

Profil

0001-python3-idp-cas-service-urls-getter-32400.patch

Paul Marillonnet, 16 avril 2019 17:50

Télécharger (939 octets)

Voir les différences:

Subject: [PATCH] python3: idp cas service urls getter (#32400)

 src/authentic2_idp_cas/models.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
src/authentic2_idp_cas/models.py
43 43
        return False
44 44

  
45 45
    def get_urls(self):
46
        '''List or url for matching requesting services'''
47
        return list(map(None, self.urls.split()))
46
        '''List of urls for matching requesting services'''
47
        return self.urls.split()
48 48

  
49 49
    def get_wanted_attributes(self):
50 50
        '''Compute wanted attributes for this service'''
51
-