Remove unnecessary variable

This commit is contained in:
Bo Maryniuk 2018-02-16 16:32:28 +01:00
parent 8e377b5653
commit d94c0f0152

View file

@ -25,7 +25,7 @@ try:
LIBZMQ_VERSION_INFO = tuple([int(v_el) for v_el in zmq.zmq_version().split('.')])
if ZMQ_VERSION_INFO[0] > 16: # 17.0.x+ deprecates zmq's ioloops
ZMQDefaultLoop = tornado.ioloop.IOLoop
except Exception as ex:
except Exception:
log.exception('Error while getting LibZMQ/PyZMQ library version')
if ZMQDefaultLoop is None: