diff options
author | Roland Hedberg <roland.hedberg@adm.umu.se> | 2013-05-16 13:21:05 +0200 |
---|---|---|
committer | Roland Hedberg <roland.hedberg@adm.umu.se> | 2013-05-16 13:21:05 +0200 |
commit | eb2066f02ba84ee7ca37ec448a474611368d7e93 (patch) | |
tree | ea4f43e1643e6448663d09db9f013260542d0831 | |
parent | a432390da2fa549019f121c02dc48ed04b8d724d (diff) | |
download | pysaml2-eb2066f02ba84ee7ca37ec448a474611368d7e93.tar.gz |
Change to locations to one
-rwxr-xr-x | example/sp/sp.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/sp/sp.py b/example/sp/sp.py index 9e5b63ad..ff460f5a 100755 --- a/example/sp/sp.py +++ b/example/sp/sp.py @@ -126,11 +126,11 @@ def slo(environ, start_response, user): if response is None: request = sc.lo - headers = [("Location", "/done")] + headers = [] delco = delete_cookie(environ, "pysaml2") if delco: headers.append(delco) - resp = Redirect("Successful Logout", headers=headers) + resp = Redirect("/done", headers=headers) return resp(environ, start_response) |