From 5900124cd99790a0d6a28d6cafd44092000d360b Mon Sep 17 00:00:00 2001 From: Ronny Abraham Date: Tue, 6 Sep 2016 16:55:55 +0300 Subject: [PATCH] template generator was relying on old dest/source names, changed to local/remote modified: modules/utils.py --- modules/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/utils.py b/modules/utils.py index a8a3f37..adeb953 100644 --- a/modules/utils.py +++ b/modules/utils.py @@ -248,7 +248,7 @@ def generate_template_build_path(section, template_name='conf'): conf_section_templatename = getattr(conf_section, template_name) build_path = os.path.join( - conf_section.path.dest, + conf_section.path.remote, 'build', conf_section_templatename.dst)