diff --git a/example/sp/sp.py b/example/sp/sp.py index 1b17934..a00d626 100755 --- a/example/sp/sp.py +++ b/example/sp/sp.py @@ -90,7 +90,8 @@ def whoami(environ, start_response, user): response = ["

Your identity are supposed to be

"] response.extend(dict_to_table(ava)) else: - response = ["

No information about you was returned

"] + response = [ + "

The system did not return any information about you

"] response.extend("Logout") resp = Response(response) diff --git a/example/sp/sp_conf.py b/example/sp/sp_conf.py index 50b4ebf..d324427 100644 --- a/example/sp/sp_conf.py +++ b/example/sp/sp_conf.py @@ -9,7 +9,7 @@ CONFIG = { "description": "My SP", "service": { "sp": { - "name" : "Rolands SP", + "name": "Rolands SP", "endpoints": { "assertion_consumer_service": [BASE], "single_logout_service": [(BASE + "/slo",