summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Paul Calderone <exarkun@twistedmatrix.com>2015-01-18 15:26:20 -0500
committerStephen Holsapple <sholsapp@gmail.com>2015-01-30 17:49:38 -0800
commit093d9fee1af2d0959271867dfa34cf123dad7401 (patch)
tree28373b11b18a84ceee2955e4edef942e40b5fbad
parent41a4b727bd4240b2d9ff2be256704dc1f729b727 (diff)
downloadpyopenssl-093d9fee1af2d0959271867dfa34cf123dad7401.tar.gz
wrap long line
-rw-r--r--OpenSSL/crypto.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSSL/crypto.py b/OpenSSL/crypto.py
index eeddbcb..0272dd6 100644
--- a/OpenSSL/crypto.py
+++ b/OpenSSL/crypto.py
@@ -45,7 +45,8 @@ def _exception_from_context_error(exception_type, store_ctx):
errors = [
_lib.X509_STORE_CTX_get_error(store_ctx._store_ctx),
_lib.X509_STORE_CTX_get_error_depth(store_ctx._store_ctx),
- _native(_ffi.string(_lib.X509_verify_cert_error_string(_lib.X509_STORE_CTX_get_error(store_ctx._store_ctx)))),
+ _native(_ffi.string(_lib.X509_verify_cert_error_string(
+ _lib.X509_STORE_CTX_get_error(store_ctx._store_ctx)))),
]
_x509 = _lib.X509_STORE_CTX_get_current_cert(store_ctx._store_ctx)
if _x509 != _ffi.NULL: