python3: idp cas service urls getter (#32400)

This commit is contained in:
Paul Marillonnet 2019-04-08 18:18:59 +02:00
parent e6ddc1cdd3
commit c8249b4cfb
1 changed files with 2 additions and 2 deletions

View File

@ -43,8 +43,8 @@ class Service(LogoutUrlAbstract, Service):
return False
def get_urls(self):
'''List or url for matching requesting services'''
return list(map(None, self.urls.split()))
'''List of urls for matching requesting services'''
return self.urls.split()
def get_wanted_attributes(self):
'''Compute wanted attributes for this service'''