From d0c5c393b615e966f50b51fed551c18020aacb67 Mon Sep 17 00:00:00 2001 From: damianavila Date: Fri, 18 Dec 2015 10:14:24 -0300 Subject: [PATCH] Remove hard-coding of jupyter_config_dir config_dir at the notebookapp level, letting that being managed ny the ConfigManager. --- notebook/notebookapp.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/notebook/notebookapp.py b/notebook/notebookapp.py index 2c1d392d7..520db18c7 100644 --- a/notebook/notebookapp.py +++ b/notebook/notebookapp.py @@ -827,8 +827,7 @@ class NotebookApp(JupyterApp): ) self.config_manager = self.config_manager_class( parent=self, - log=self.log, - config_dir=os.path.join(self.config_dir, 'nbconfig'), + log=self.log ) def init_logging(self):