aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormichael-hart <michael.hart1994@gmail.com>2014-09-12 12:14:55 +0100
committermichael-hart <michael.hart1994@gmail.com>2014-09-12 12:14:55 +0100
commitf0ec609bd18c050b270d87d26e454b073b67a76e (patch)
treeb5b6fe71624219418ae7804c9a7d63cd3077ea60
parentfaa35a8b4c94bf2f47a0ea36ed0401f33a4fca00 (diff)
downloadcryptography-f0ec609bd18c050b270d87d26e454b073b67a76e.tar.gz
cryptography-f0ec609bd18c050b270d87d26e454b073b67a76e.tar.bz2
cryptography-f0ec609bd18c050b270d87d26e454b073b67a76e.zip
Further formatting changes
Essentially a continuation of the previous commit, this commit tabs a line which should have been tabbed before.
-rw-r--r--cryptography/hazmat/backends/openssl/backend.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/hazmat/backends/openssl/backend.py b/cryptography/hazmat/backends/openssl/backend.py
index 944f87bb..7e619a10 100644
--- a/cryptography/hazmat/backends/openssl/backend.py
+++ b/cryptography/hazmat/backends/openssl/backend.py
@@ -474,7 +474,7 @@ class Backend(object):
dsa_cdata = self._ffi.gc(dsa_cdata, self._lib.DSA_free)
return _DSAPrivateKey(self, dsa_cdata)
elif self._lib.Cryptography_HAS_EC == 1 \
- and type == self._lib.EVP_PKEY_EC:
+ and type == self._lib.EVP_PKEY_EC:
ec_cdata = self._lib.EVP_PKEY_get1_EC_KEY(evp_pkey)
assert ec_cdata != self._ffi.NULL
ec_cdata = self._ffi.gc(ec_cdata, self._lib.EC_KEY_free)