From f45f35ec2eae617ae2c7df82706a8fbddafd4c81 Mon Sep 17 00:00:00 2001 From: Brian Granger Date: Wed, 30 Mar 2011 23:00:42 -0700 Subject: [PATCH] Added message to help users open notebook. --- IPython/frontend/html/notebook/notebook.py | 1 + 1 file changed, 1 insertion(+) diff --git a/IPython/frontend/html/notebook/notebook.py b/IPython/frontend/html/notebook/notebook.py index 164e11f20..5f48025e8 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()