summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorori15 <ori@allthenticate.net>2021-01-14 15:03:00 -0800
committerori15 <ori@allthenticate.net>2021-01-14 15:03:00 -0800
commit082f8edb84b62dbd77fc26d9a84d6179490200d3 (patch)
tree8b4a178677eb03089ff8e3b09ca1613bf9c2ae7b
parent1e730de8bde54ffe8646da41780198d346bd5826 (diff)
downloadpysaml2-082f8edb84b62dbd77fc26d9a84d6179490200d3.tar.gz
make metadata path the same as entityid
-rwxr-xr-xexample/idp2/idp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/idp2/idp.py b/example/idp2/idp.py
index ea602cd7..7b8b9b9f 100755
--- a/example/idp2/idp.py
+++ b/example/idp2/idp.py
@@ -1041,7 +1041,7 @@ def application(environ, start_response):
path = environ.get("PATH_INFO", "").lstrip("/")
- if path == "metadata":
+ if path == "idp.xml":
return metadata(environ, start_response)
kaka = environ.get("HTTP_COOKIE", None)