Merge pull request #101 from richtera/master

Fix error looking at empty post in sp plugin.
This commit is contained in:
Roland Hedberg
2014-04-01 17:46:56 +02:00

View File

@@ -508,6 +508,8 @@ class SAML2Plugin(object):
binding = BINDING_HTTP_REDIRECT
else:
post = self._get_post(environ)
if post.list is None:
post.list = []
binding = BINDING_HTTP_POST
try: