##// END OF EJS Templates
Renaming NotebookApplication to NotebookWebApplication.
Brian E. Granger -
Show More
@@ -27,7 +27,7 b' _kernel_action_regex = r"(?P<action>restart|interrupt)"'
27
27
28
28
29
29
30 class NotebookApplication(web.Application):
30 class NotebookWebApplication(web.Application):
31
31
32 def __init__(self):
32 def __init__(self):
33 handlers = [
33 handlers = [
@@ -117,7 +117,7 b' class NotebookApplication(web.Application):'
117
117
118 def launch_new_instance():
118 def launch_new_instance():
119 options.parse_command_line()
119 options.parse_command_line()
120 application = NotebookApplication()
120 application = NotebookWebApplication()
121 http_server = httpserver.HTTPServer(application)
121 http_server = httpserver.HTTPServer(application)
122 http_server.listen(options.options.port)
122 http_server.listen(options.options.port)
123 print "IPython Notebook running at: http://127.0.0.1:8888"
123 print "IPython Notebook running at: http://127.0.0.1:8888"
General Comments 0
You need to be logged in to leave comments. Login now