aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Reid <dreid@dreid.org>2013-12-12 15:19:37 -0800
committerDavid Reid <dreid@dreid.org>2013-12-12 15:19:37 -0800
commit2bc3334979ceaee2592e42b3135454ab63b4d009 (patch)
tree6cd8c7c428385160d5656e0b40b8c262a5f41edc
parentc4f9b1db8b6848b78dd348e9f2ce32752a7b2e39 (diff)
downloadcryptography-2bc3334979ceaee2592e42b3135454ab63b4d009.tar.gz
cryptography-2bc3334979ceaee2592e42b3135454ab63b4d009.tar.bz2
cryptography-2bc3334979ceaee2592e42b3135454ab63b4d009.zip
alex parens.
-rw-r--r--cryptography/hazmat/bindings/openssl/backend.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/cryptography/hazmat/bindings/openssl/backend.py b/cryptography/hazmat/bindings/openssl/backend.py
index d69fdc45..2e73180f 100644
--- a/cryptography/hazmat/bindings/openssl/backend.py
+++ b/cryptography/hazmat/bindings/openssl/backend.py
@@ -131,11 +131,13 @@ class Backend(object):
# int foo(short);
lib = ffi.verify(
- source="\n".join([_OSX_PRE_INCLUDE] +
- includes +
- [_OSX_POST_INCLUDE] +
- functions +
- customizations),
+ source="\n".join(
+ [_OSX_PRE_INCLUDE] +
+ includes +
+ [_OSX_POST_INCLUDE] +
+ functions +
+ customizations
+ ),
libraries=["crypto", "ssl"],
)