diff options
author | Laurens Van Houtven <_@lvh.cc> | 2014-06-23 10:41:20 +0200 |
---|---|---|
committer | Laurens Van Houtven <_@lvh.cc> | 2014-06-23 10:41:20 +0200 |
commit | 7aa6243a762cada6d06f24841351cfaecd23bfaf (patch) | |
tree | d618463d9f8db84207311f66ddd6fe34ccb5443c | |
parent | d575f06817008d9d9ffa4defc397b817a24ce76c (diff) | |
download | cryptography-7aa6243a762cada6d06f24841351cfaecd23bfaf.tar.gz cryptography-7aa6243a762cada6d06f24841351cfaecd23bfaf.tar.bz2 cryptography-7aa6243a762cada6d06f24841351cfaecd23bfaf.zip |
Fix x509.py comment style
-rw-r--r-- | cryptography/hazmat/bindings/openssl/x509.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/bindings/openssl/x509.py b/cryptography/hazmat/bindings/openssl/x509.py index cf38df32..b74c118b 100644 --- a/cryptography/hazmat/bindings/openssl/x509.py +++ b/cryptography/hazmat/bindings/openssl/x509.py @@ -245,7 +245,7 @@ int i2d_ECPrivateKey_bio(BIO *, EC_KEY *); """ CUSTOMIZATIONS = """ -// OpenSSL 0.9.8e does not have this definition +/* OpenSSL 0.9.8e does not have this definition. */ #if OPENSSL_VERSION_NUMBER <= 0x0090805fL typedef STACK_OF(X509_EXTENSION) X509_EXTENSIONS; #endif |