From 970507711bca223a6feb51801c896268fe329402 Mon Sep 17 00:00:00 2001 From: Min RK Date: Tue, 29 Dec 2015 12:15:06 +0100 Subject: [PATCH] restore hardcoded config_dir --- notebook/notebookapp.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/notebook/notebookapp.py b/notebook/notebookapp.py index 520db18c78..2c1d392d7d 100644 --- a/notebook/notebookapp.py +++ b/notebook/notebookapp.py @@ -827,7 +827,8 @@ def init_configurables(self): ) self.config_manager = self.config_manager_class( parent=self, - log=self.log + log=self.log, + config_dir=os.path.join(self.config_dir, 'nbconfig'), ) def init_logging(self):