From 1876eb3f6ba176f4fa156d914fe2d75eb77dd388 Mon Sep 17 00:00:00 2001 From: Aizizi Yigaimu Date: Thu, 22 Aug 2019 15:53:31 -0400 Subject: [PATCH] Fix path error --- bpeng/pna/pna.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bpeng/pna/pna.py b/bpeng/pna/pna.py index f59e5ec..053474e 100644 --- a/bpeng/pna/pna.py +++ b/bpeng/pna/pna.py @@ -35,7 +35,7 @@ def generate_ashp_pna(template_path, building_info, hvac, cost_estimates, scores Returns a python-pptx presentation object """ - pna_generator = TemplateInstantiator('template_path') + pna_generator = TemplateInstantiator(template_path) addr = building_info['address'] # Provide template with address, client name, and date for title page -- GitLab