From 0ca37647fe417e078c5bd70f8452c264ace3a2d7 Mon Sep 17 00:00:00 2001 From: shangxdy Date: Tue, 12 Sep 2017 22:27:15 +0800 Subject: Fix substitution mapping assigned value to nodetemplate Currently the assignment mapped template value to nodetemplate is error, and additionally debug_mode is not transfered to nested template. So the patch will fix them. JIRA: PARSER-155 Change-Id: I8c5801b00ae56b9ba2eb92a6f14357c2f5328718 Signed-off-by: shangxdy --- tosca2heat/tosca-parser/toscaparser/shell.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'tosca2heat/tosca-parser/toscaparser/shell.py') diff --git a/tosca2heat/tosca-parser/toscaparser/shell.py b/tosca2heat/tosca-parser/toscaparser/shell.py index ba9c28f..88c7473 100644 --- a/tosca2heat/tosca-parser/toscaparser/shell.py +++ b/tosca2heat/tosca-parser/toscaparser/shell.py @@ -91,11 +91,8 @@ class ParserShell(object): no_required_paras_check=nrpv, debug_mode=debug_mode) except ValidationError as e: - msg = _(' ===== main service template ===== ') - log.error(msg) log.error(e.message) if debug_mode: - print(msg) print(e.message) else: raise e -- cgit 1.2.3-korg