From 74b8ea80ce3b4bc6c57f6f030ffa053101d2999a 2011-07-21 03:42:32 From: Brian Granger Date: 2011-07-21 03:42:32 Subject: [PATCH] Added message to help users open notebook. --- diff --git a/IPython/frontend/html/notebook/notebook.py b/IPython/frontend/html/notebook/notebook.py index 164e11f..5f48025 100644 --- a/IPython/frontend/html/notebook/notebook.py +++ b/IPython/frontend/html/notebook/notebook.py @@ -178,6 +178,7 @@ def main(): application = NotebookApplication() http_server = httpserver.HTTPServer(application) http_server.listen(options.options.port) + print "IPython Notebook running at: http://127.0.0.1:8888" ioloop.IOLoop.instance().start()