summaryrefslogtreecommitdiff
path: root/src/saml2/pack.py
diff options
context:
space:
mode:
authorYo Sub Kwon <yo@launchkey.com>2015-05-19 16:09:55 -0700
committerYo Sub Kwon <yo@launchkey.com>2015-05-19 16:09:55 -0700
commit79fe8a9c7e5d8db964ead5f29d0eda6dd3976373 (patch)
treeeffbb50ccda1c78528afecb18710a7c032f578b0 /src/saml2/pack.py
parent45a676246c0e0a7c09fdb4f00a5fed1d84061407 (diff)
downloadpysaml2-79fe8a9c7e5d8db964ead5f29d0eda6dd3976373.tar.gz
Fix typo 'unknown'
Diffstat (limited to 'src/saml2/pack.py')
-rw-r--r--src/saml2/pack.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/saml2/pack.py b/src/saml2/pack.py
index 8057ad03..f045c7a8 100644
--- a/src/saml2/pack.py
+++ b/src/saml2/pack.py
@@ -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"):