We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 385622d + 0a3603e commit df13998Copy full SHA for df13998
nbviewer/app.py
@@ -577,7 +577,9 @@ def static_paths(self):
577
def template_paths(self):
578
default_template_path = pjoin(here, "templates")
579
if self.template_path:
580
- self.log.info("Using custom template path %()s", self.template_path)
+ self.log.info(
581
+ "Using custom template path %(path)s", {"path": self.template_path}
582
+ )
583
template_paths = [self.template_path, default_template_path]
584
else:
585
template_paths = [default_template_path]
0 commit comments