diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-10-11 02:27:31 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-10-11 02:27:31 -0400 |
commit | 79bee4ac1bed42e8df47dcaa11c83e1a55bd0b6f (patch) | |
tree | fba3af0143bc7d396d9ef35d026947b7a5e3ee40 /src | |
parent | 8453d642da4aed6f3f151536539614db1dc743e3 (diff) | |
download | cryptography-79bee4ac1bed42e8df47dcaa11c83e1a55bd0b6f.tar.gz cryptography-79bee4ac1bed42e8df47dcaa11c83e1a55bd0b6f.tar.bz2 cryptography-79bee4ac1bed42e8df47dcaa11c83e1a55bd0b6f.zip |
typo
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptography/hazmat/backends/openssl/x509.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptography/hazmat/backends/openssl/x509.py b/src/cryptography/hazmat/backends/openssl/x509.py index 93aea27a..cfde4a73 100644 --- a/src/cryptography/hazmat/backends/openssl/x509.py +++ b/src/cryptography/hazmat/backends/openssl/x509.py @@ -263,7 +263,7 @@ class _Certificate(object): if pkey == self._backend._ffi.NULL: # Remove errors from the stack. self._backend._consume_errors() - raise ValueError("Certificate public key is of an unkonwn type") + raise ValueError("Certificate public key is of an unknown type") pkey = self._backend._ffi.gc(pkey, self._backend._lib.EVP_PKEY_free) |