salt.crypt: fix pylint W0702 "No exception type(s) specified"

This commit is contained in:
Chris Rebert 2013-06-26 11:44:21 -07:00
parent b67653b7e4
commit 30bffb9c02

View File

@ -17,7 +17,7 @@ import logging
try:
from M2Crypto import RSA
from Crypto.Cipher import AES
except:
except ImportError:
# No need for crypt in local mode
pass