diff options
author | José Padilla <jpadilla@webapplicate.com> | 2015-03-17 21:35:18 -0400 |
---|---|---|
committer | José Padilla <jpadilla@webapplicate.com> | 2015-03-17 21:35:18 -0400 |
commit | 838f82445a1274a7dbd5f57e9729cb4986b29eb8 (patch) | |
tree | 28ecd3d02bece1f1e2eb358caecfdd47398fc002 | |
parent | 88a9fc56bdc6c870aa6af93bda401414a217db2a (diff) | |
download | pyjwt-838f82445a1274a7dbd5f57e9729cb4986b29eb8.tar.gz |
Fix typo
-rw-r--r-- | jwt/algorithms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jwt/algorithms.py b/jwt/algorithms.py index b22a1d9..f50787f 100644 --- a/jwt/algorithms.py +++ b/jwt/algorithms.py @@ -111,7 +111,7 @@ class HMACAlgorithm(Algorithm): if any([string_value in key for string_value in invalid_strings]): raise InvalidKeyError( - 'The specified key is an assymetric key or x509 certificate and' + 'The specified key is an asymmetric key or x509 certificate and' ' should not be used as an HMAC secret.') return key |