##// END OF EJS Templates
On tab select, the URL is updated.
On tab select, the URL is updated.

File last commit:

r6132:2959fa0a
r6198:b9a328a1
Show More
__init__.py
15 lines | 409 B | text/x-python | PythonLexer
"""The IPython HTML Notebook"""
# check for tornado 2.1.0
msg = "The IPython Notebook requires tornado >= 2.1.0"
try:
import tornado
except ImportError:
raise ImportError(msg)
try:
version_info = tornado.version_info
except AttributeError:
raise ImportError(msg + ", but you have < 1.1.0")
if version_info < (2,1,0):
raise ImportError(msg + ", but you have %s" % tornado.version)
del msg