aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Goodman <akgood@duosecurity.com>2014-07-23 20:26:30 -0400
committerAdam Goodman <akgood@duosecurity.com>2014-07-23 20:26:30 -0400
commit2231e189a59d80bc4c0cba604d3fc95c61d0a3b9 (patch)
tree2171ef6924514455df5998038a287c1d9136f761
parente97ae127f9fc44098f2461a567aa6b9a61e37f5c (diff)
downloadcryptography-2231e189a59d80bc4c0cba604d3fc95c61d0a3b9.tar.gz
cryptography-2231e189a59d80bc4c0cba604d3fc95c61d0a3b9.tar.bz2
cryptography-2231e189a59d80bc4c0cba604d3fc95c61d0a3b9.zip
shorten comment line length for PEP-8
-rw-r--r--cryptography/hazmat/bindings/openssl/binding.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/cryptography/hazmat/bindings/openssl/binding.py b/cryptography/hazmat/bindings/openssl/binding.py
index 372ee49e..4cbe3c5b 100644
--- a/cryptography/hazmat/bindings/openssl/binding.py
+++ b/cryptography/hazmat/bindings/openssl/binding.py
@@ -96,9 +96,10 @@ class Binding(object):
# OpenSSL goes by a different library name on different operating
# systems.
if sys.platform != "win32":
- # In some circumstances, the order in which these libs are specified
- # on the linker command-line is significant; libssl must come before
- # libcrypto (http://marc.info/?l=openssl-users&m=135361825921871)
+ # In some circumstances, the order in which these libs are
+ # specified on the linker command-line is significant;
+ # libssl must come before libcrypto
+ # (http://marc.info/?l=openssl-users&m=135361825921871)
libraries = ["ssl", "crypto"]
else: # pragma: no cover
link_type = os.environ.get("PYCA_WINDOWS_LINK_TYPE", "static")