summaryrefslogtreecommitdiff
path: root/src/saml2/entity.py
diff options
context:
space:
mode:
authorHans Hörberg <hans.horberg@umu.se>2015-05-26 09:44:56 +0200
committerHans Hörberg <hans.horberg@umu.se>2015-05-26 09:44:56 +0200
commit5a1add68271394a00c94048defc02b2eff161777 (patch)
treeeff12c3c5f3c847fcf6fded36e4b216acd87090d /src/saml2/entity.py
parentaefd9b31a3e5c91498ccb7f6fcb5dde1afdff5c7 (diff)
parent52028d3e95dc2c971ec7ae637f715b1eda8fffd1 (diff)
downloadpysaml2-5a1add68271394a00c94048defc02b2eff161777.tar.gz
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'src/saml2/entity.py')
-rw-r--r--src/saml2/entity.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/saml2/entity.py b/src/saml2/entity.py
index e7ef879c..7e51d284 100644
--- a/src/saml2/entity.py
+++ b/src/saml2/entity.py
@@ -5,6 +5,7 @@ import logging
from hashlib import sha1
from Crypto.PublicKey import RSA
import requests
+import six
from saml2.metadata import ENDPOINTS
from saml2.profile import paos, ecp
from saml2.soap import parse_soap_enveloped_saml_artifact_resolve
@@ -157,7 +158,7 @@ class Entity(HTTPBase):
self.sec = security_context(self.config)
if virtual_organization:
- if isinstance(virtual_organization, basestring):
+ if isinstance(virtual_organization, six.string_types):
self.vorg = self.config.vorg[virtual_organization]
elif isinstance(virtual_organization, VirtualOrg):
self.vorg = virtual_organization
@@ -282,7 +283,7 @@ class Entity(HTTPBase):
#logger.error("Bindings: %s" % bindings)
#logger.error("Entities: %s" % self.metadata)
- raise SAMLError("Unkown entity or unsupported bindings")
+ raise SAMLError("Unknown entity or unsupported bindings")
def message_args(self, message_id=0):
if not message_id: