diff options
Diffstat (limited to 'robotframework-onap/eteutils/TemplatingEngine.py')
-rw-r--r-- | robotframework-onap/eteutils/TemplatingEngine.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/robotframework-onap/eteutils/TemplatingEngine.py b/robotframework-onap/eteutils/TemplatingEngine.py index 0f579e7..5e701a7 100644 --- a/robotframework-onap/eteutils/TemplatingEngine.py +++ b/robotframework-onap/eteutils/TemplatingEngine.py @@ -29,6 +29,5 @@ class TemplatingEngine: def apply_template(self, template_location, values): """returns a string that is the jinja template in template_location filled in via the dictionary in values """ - print template = self.jinja_env.get_template(template_location) - return template.render(values)
\ No newline at end of file + return template.render(values) |