From 3a9493bcabebcc836fe955847634795acaca524b Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Sun, 2 Aug 2015 14:56:17 -0700 Subject: [PATCH] Look for notebook config in nbconfig/ subdirectory Fixes gh-250, I hope --- notebook/notebookapp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebook/notebookapp.py b/notebook/notebookapp.py index 64113d1a3..81b417e65 100644 --- a/notebook/notebookapp.py +++ b/notebook/notebookapp.py @@ -815,7 +815,7 @@ class NotebookApp(JupyterApp): self.config_manager = self.config_manager_class( parent=self, log=self.log, - config_dir=self.config_dir, + config_dir=os.path.join(self.config_dir, 'nbconfig'), ) def init_logging(self):