From 8f9ef998b73551f80399c3d184ae56cacbac94ca Mon Sep 17 00:00:00 2001 From: cassie-nahar-nasa Date: Fri, 10 Oct 2025 10:38:01 -0400 Subject: [PATCH] Fix incorrect log messages in template.py --- doorstop/core/template.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doorstop/core/template.py b/doorstop/core/template.py index 0da6681cf..d37bd0db1 100644 --- a/doorstop/core/template.py +++ b/doorstop/core/template.py @@ -108,14 +108,14 @@ def get_template(obj, path, ext, template): log.info( "Copying %s to %s", each.template, - os.path.join(os.path.dirname(path), "template"), + template_dir, ) common.copy_dir_contents(each.template, template_dir) else: log.info( "Copying %s to %s", document_template, - os.path.join(os.path.dirname(path), "template"), + template_dir, ) common.copy_dir_contents(document_template, template_dir) @@ -125,7 +125,7 @@ def get_template(obj, path, ext, template): log.info( "Copying %s to %s", template_assets, - os.path.join(os.path.dirname(path), "template"), + template_dir, ) common.copy_dir_contents(template_assets, template_dir) # If html template, also copy the default views files.