##// END OF EJS Templates
Quick, trivial fix to test failure introduced in cca0bf (PR #1624)
Quick, trivial fix to test failure introduced in cca0bf (PR #1624)

File last commit:

r6132:2959fa0a
r6563:10f133e4
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