##// END OF EJS Templates
add pyzmq check to notebook.__init__...
MinRK -
Show More
@@ -13,3 +13,8 b' except AttributeError:'
13 if version_info < (2,1,0):
13 if version_info < (2,1,0):
14 raise ImportError(msg + ", but you have %s" % tornado.version)
14 raise ImportError(msg + ", but you have %s" % tornado.version)
15 del msg
15 del msg
16
17 # check for pyzmq 2.1.4
18 from IPython.zmq import check_for_zmq
19 check_for_zmq('2.1.4', 'IPython.frontend.html.notebook')
20 del check_for_zmq
General Comments 0
You need to be logged in to leave comments. Login now