mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-21 04:10:17 +08:00
Merge pull request #6491 from minrk/tornado_settings
rename webapp_settings to tornado_settings
This commit is contained in:
commit
ab13b8fde6
@ -468,6 +468,13 @@ class NotebookApp(BaseIPythonApplication):
|
||||
""")
|
||||
|
||||
webapp_settings = Dict(config=True,
|
||||
help="DEPRECATED, use tornado_settings"
|
||||
)
|
||||
def _webapp_settings_changed(self, name, old, new):
|
||||
self.log.warn("\n webapp_settings is deprecated, use tornado_settings.\n")
|
||||
self.tornado_settings = new
|
||||
|
||||
tornado_settings = Dict(config=True,
|
||||
help="Supply overrides for the tornado.web.Application that the "
|
||||
"IPython notebook uses.")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user