Added note about tornado version to main script.

This commit is contained in:
Brian Granger 2011-05-03 17:03:59 -07:00 committed by Brian E. Granger
parent a24e75c2a2
commit 0dd637b4d5

View File

@ -265,6 +265,8 @@ def main():
http_server = httpserver.HTTPServer(application)
http_server.listen(options.options.port)
print "IPython Notebook running at: http://127.0.0.1:8888"
print "The github master of tornado is required to run this server:"
print " https://github.com/facebook/tornado/tree/master/tornado"
ioloop.IOLoop.instance().start()