diff --git a/nbviewer/app.py b/nbviewer/app.py index efb1f0f9..c883d9b7 100644 --- a/nbviewer/app.py +++ b/nbviewer/app.py @@ -577,7 +577,9 @@ def static_paths(self): def template_paths(self): default_template_path = pjoin(here, "templates") if self.template_path: - self.log.info("Using custom template path %()s", self.template_path) + self.log.info( + "Using custom template path %(path)s", {"path": self.template_path} + ) template_paths = [self.template_path, default_template_path] else: template_paths = [default_template_path]