From ae6fedd18ad51f175d6a2e2346f284a68b6e4967 Mon Sep 17 00:00:00 2001 From: DR695H Date: Wed, 1 May 2019 18:52:33 -0400 Subject: support python 3 support python 3 in all files, also support python 2 however so everything should continue to work Change-Id: I4ace08d2bb0623c0fdc61f2fe39d2339817aa916 Issue-ID: TEST-141 Signed-off-by: DR695H --- robotframework-onap/eteutils/TemplatingEngine.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'robotframework-onap/eteutils/TemplatingEngine.py') 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) -- cgit 1.2.3-korg