summaryrefslogtreecommitdiff
path: root/OpenSSL
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2015-09-20 09:21:29 -0400
committerAlex Gaynor <alex.gaynor@gmail.com>2015-09-20 09:21:29 -0400
commit6f719912ad2dc69fed9dbca21ac3e1b90bb95203 (patch)
tree77026b94d83a3bdbc485b0658284002299b02ad8 /OpenSSL
parenteeaf11d7fb6b66fa7b24f843b4bca53e08571afb (diff)
downloadpyopenssl-6f719912ad2dc69fed9dbca21ac3e1b90bb95203.tar.gz
Fixed mismatched parameter documentation
Diffstat (limited to 'OpenSSL')
-rw-r--r--OpenSSL/crypto.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSSL/crypto.py b/OpenSSL/crypto.py
index 7b2ce07..132d98d 100644
--- a/OpenSSL/crypto.py
+++ b/OpenSSL/crypto.py
@@ -627,9 +627,9 @@ class X509Extension(object):
"""
Initializes an X509 extension.
- :param typename: The name of the type of extension to create. See
+ :param type_name: The name of the type of extension to create. See
http://openssl.org/docs/apps/x509v3_config.html#STANDARD_EXTENSIONS
- :type typename: :py:data:`bytes`
+ :type type_name: :py:data:`bytes`
:param bool critical: A flag indicating whether this is a critical
extension.