From 9a31ea80192f9ae3de3a3fe9d2fa012b5db122a4 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Tue, 11 Feb 2014 10:24:15 -0800 Subject: [PATCH] auth.pki.auth(): fix caps in ref to Crypto.Util ************* Module salt.auth.pki salt/auth/pki.py:91: [E1101(no-member), auth] Module 'Crypto' has no 'util' member --- salt/auth/pki.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/auth/pki.py b/salt/auth/pki.py index 2659e94ee9..fbff3a2a82 100644 --- a/salt/auth/pki.py +++ b/salt/auth/pki.py @@ -88,7 +88,7 @@ def auth(pem, **kwargs): # The signature is a BIT STRING (Type 3) # Decode that as well - der_sig_in = Crypto.util.asn1.DerObject() + der_sig_in = Crypto.Util.asn1.DerObject() der_sig_in.decode(der_sig) # Get the payload