##// END OF EJS Templates
rename webapp_settings to tornado_settings...
MinRK -
Show More
@@ -0,0 +1,2 b''
1 - ``NotebookApp.webapp_settings`` is deprecated and replaced with
2 the more informatively named ``NotebookApp.tornado_settings``. No newline at end of file
@@ -468,6 +468,13 b' class NotebookApp(BaseIPythonApplication):'
468 """)
468 """)
469
469
470 webapp_settings = Dict(config=True,
470 webapp_settings = Dict(config=True,
471 help="DEPRECATED, use tornado_settings"
472 )
473 def _webapp_settings_changed(self, name, old, new):
474 self.log.warn("\n webapp_settings is deprecated, use tornado_settings.\n")
475 self.tornado_settings = new
476
477 tornado_settings = Dict(config=True,
471 help="Supply overrides for the tornado.web.Application that the "
478 help="Supply overrides for the tornado.web.Application that the "
472 "IPython notebook uses.")
479 "IPython notebook uses.")
473
480
General Comments 0
You need to be logged in to leave comments. Login now