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

This commit is contained in:
Chris Rebert 2013-06-26 11:43:10 -07:00
parent b67653b7e4
commit 9a093c96bc

View File

@ -17,7 +17,7 @@ from salt.utils.odict import OrderedDict
# Import third party libs
try:
import zmq
except:
except ImportError:
# No need for zeromq in local mode
pass