Remove hard-coding of jupyter_config_dir config_dir at the notebookapp level, letting that being managed ny the ConfigManager.

This commit is contained in:
damianavila 2015-12-18 10:14:24 -03:00
parent 71c5057ae5
commit d0c5c393b6

View File

@ -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):