From: Matus Fabian Date: Mon, 15 Feb 2016 08:45:01 +0000 (+0100) Subject: Fixed vat_terminal_exec_cmd_from_template X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=commitdiff_plain;h=c662f5045a4812540fcc11006ae865351090035b Fixed vat_terminal_exec_cmd_from_template Change-Id: I6ecabd5c66b30f74f9efea24f94139f089c579bf Signed-off-by: Matus Fabian --- diff --git a/resources/libraries/python/VatExecutor.py b/resources/libraries/python/VatExecutor.py index 5582a869b7..aff8c36130 100644 --- a/resources/libraries/python/VatExecutor.py +++ b/resources/libraries/python/VatExecutor.py @@ -193,5 +193,5 @@ class VatTerminal(object): ret = [] for line_tmpl in cmd_template: vat_cmd = line_tmpl.format(**args) - ret.append(self.vat_terminal_exec_cmd(vat_cmd)) + ret.append(self.vat_terminal_exec_cmd(vat_cmd.replace('\n', ''))) return ret