From 479984c05d9a452cf688eaa2fa563fbdbacfe387 Mon Sep 17 00:00:00 2001 From: Zach Sailer Date: Fri, 5 Aug 2022 11:57:09 -0700 Subject: [PATCH] point nbclassic at the classic jupyter_notebook_config path --- nbclassic/notebookapp.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/nbclassic/notebookapp.py b/nbclassic/notebookapp.py index 68d58c0c8..7a20664b9 100644 --- a/nbclassic/notebookapp.py +++ b/nbclassic/notebookapp.py @@ -131,6 +131,14 @@ class NotebookApp( """ ).tag(config=True) + # Load configuration from classic notebook config file + # for backwards compatibility + config_file_name = Unicode( + "jupyter_notebook_config", + config=True, + help="Specify a config file to load." + ) + static_custom_path = List(Unicode(), help=_i18n( """Path to search for custom.js, css""")