Skip to content

Commit

Permalink
Merge pull request #251 from takluyver/i250
Browse files Browse the repository at this point in the history
Look for notebook config in nbconfig/ subdirectory
  • Loading branch information
minrk committed Aug 3, 2015
2 parents 2f3789f + 3a9493b commit 6bd84b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebook/notebookapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -815,7 +815,7 @@ def init_configurables(self):
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):
Expand Down

0 comments on commit 6bd84b9

Please sign in to comment.