##// END OF EJS Templates
small CSS adjustments in notebook...
small CSS adjustments in notebook * add think border around input area * change background instead of foreground on stderr * only stderr/stdout are output_stream, general text (including streams) is output_text * reduce vertical padding on stream output, per @fperez

File last commit:

r4856:d3ee41f9
r4883:43d1d58e
Show More
__init__.py
12 lines | 305 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)
else:
if tornado.version_info < (2,1,0):
raise ImportError(msg+", but you have %s"%tornado.version)
del msg