Merge pull request #219 from jchysk/master

Fix typo 'unknown'
This commit is contained in:
Roland Hedberg
2015-05-20 11:38:49 +02:00
3 changed files with 5 additions and 5 deletions

View File

@@ -30,7 +30,7 @@ class AuthnRequest_UnknownExtension(AuthnRequest):
return message
OPERATIONS = {
'authn_unkown-issuer': {
'authn_unknown-issuer': {
"name": 'AuthnRequest with unknown issuer',
"descr": 'AuthnRequest with unknown issuer',
"sequence": [AuthnRequest_UnknownIssuer],
@@ -38,7 +38,7 @@ OPERATIONS = {
"tests": {"pre": [CheckSaml2IntMetaData],
"post": [CheckSaml2IntAttributes]}
},
'authn_unkown-extension': {
'authn_unknown-extension': {
"name": 'AuthnRequest with unknown extension',
"descr": 'AuthnRequest with unknown extension',
"sequence": [AuthnRequest_UnknownExtension],
@@ -46,4 +46,4 @@ OPERATIONS = {
"tests": {"pre": [CheckSaml2IntMetaData],
"post": [CheckSaml2IntAttributes]}
},
}
}

View File

@@ -281,7 +281,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:

View File

@@ -247,7 +247,7 @@ def packager(identifier):
try:
return PACKING[identifier]
except KeyError:
raise Exception("Unkown binding type: %s" % identifier)
raise Exception("Unknown binding type: %s" % identifier)
def factory(binding, message, location, relay_state="", typ="SAMLRequest"):