Skip to content

Commit

Permalink
rename templates method
Browse files Browse the repository at this point in the history
  • Loading branch information
Zsailer committed Mar 6, 2020
1 parent d50c5ff commit ec06510
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nbclassic/notebookapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ def template_paths(self):
"""Rename trait for Jupyter Server."""
return self.template_file_path

def initialize_templates(self):
super(NotebookApp, self).initialize_templates()
def _prepare_templates(self):
super(NotebookApp, self)._prepare_templates()

# Get translations from notebook package.
base_dir = os.path.dirname(notebook.__file__)
Expand Down

0 comments on commit ec06510

Please sign in to comment.