From: Frank Brehm Date: Fri, 13 Dec 2019 12:47:30 +0000 (+0100) Subject: Bugfixing X-Git-Tag: 1.4.2~1^2 X-Git-Url: https://git.uhu-banane.de/?a=commitdiff_plain;h=e3d0e235c69e23716484136eccba39a82b3332e2;p=pixelpark%2Fcreate-terraform.git Bugfixing --- diff --git a/lib/cr_tf/handler.py b/lib/cr_tf/handler.py index f361556..90029f4 100644 --- a/lib/cr_tf/handler.py +++ b/lib/cr_tf/handler.py @@ -60,7 +60,7 @@ from .terraform.disk import TerraformDisk from .xlate import XLATOR -__version__ = '3.3.3' +__version__ = '3.3.4' LOG = logging.getLogger(__name__) _ = XLATOR.gettext @@ -2809,7 +2809,7 @@ class CreateTerraformHandler(BaseHandler): if e.stdout: print(self.colored("Output", 'AQUA') + ':\n' + to_str(e.stdout)) if e.stderr: - print(self.colored("Error message", ('BOLD', 'RED') + ':\n' + to_str(e.stderr)) + print(self.colored("Error message", ('BOLD', 'RED')) + ':\n' + to_str(e.stderr)) raise ExpectedHandlerError(str(e)) LOG.debug(_("Completed process:") + "\n" + str(result)) @@ -2852,7 +2852,7 @@ class CreateTerraformHandler(BaseHandler): if e.stdout: print(self.colored("Output", 'AQUA') + ':\n' + to_str(e.stdout)) if e.stderr: - print(self.colored("Error message", ('BOLD', 'RED') + ':\n' + to_str(e.stderr)) + print(self.colored("Error message", ('BOLD', 'RED')) + ':\n' + to_str(e.stderr)) raise ExpectedHandlerError(str(e)) LOG.debug(_("Completed process:") + "\n" + str(result))