From 693cc67a927d57da949617b88c302ff8eb7a4bf0 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Fri, 21 Feb 2014 12:28:12 -0600 Subject: Include 'self' in the interface --- cryptography/hazmat/backends/interfaces.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptography/hazmat/backends/interfaces.py b/cryptography/hazmat/backends/interfaces.py index 0a26526b..7371ca1e 100644 --- a/cryptography/hazmat/backends/interfaces.py +++ b/cryptography/hazmat/backends/interfaces.py @@ -109,7 +109,7 @@ class RSABackend(six.with_metaclass(abc.ABCMeta)): class OpenSSLSerializationBackend(six.with_metaclass(abc.ABCMeta)): @abc.abstractmethod - def load_openssl_pem_private_key(data, password, backend): + def load_openssl_pem_private_key(self, data, password, backend): """ Load a private key from PEM encoded data, using password if the data is encrypted. -- cgit v1.2.3