From 25deab4c282a5738110cbb0dc0d3b480d4612ed3 Mon Sep 17 00:00:00 2001 From: crouzet Date: Fri, 22 Oct 2021 10:20:18 +0200 Subject: [PATCH] correction erreur d'indentation et tabulations --- src/compilation.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/compilation.py b/src/compilation.py index e9eb26f..751fe73 100644 --- a/src/compilation.py +++ b/src/compilation.py @@ -97,12 +97,12 @@ class Builder: self.build_environ.set_full_environ(self.logger, environ_info) if add_env_launch: - # create runtime environment - self.launch_environ = src.environment.SalomeEnviron(self.config, - src.environment.Environ(dict(os.environ)), - False) - self.launch_environ.silent = True # no need to show here - self.launch_environ.set_full_environ(self.logger, environ_info) + # create runtime environment + self.launch_environ = src.environment.SalomeEnviron(self.config, + src.environment.Environ(dict(os.environ)), + False) + self.launch_environ.silent = True # no need to show here + self.launch_environ.set_full_environ(self.logger, environ_info) for ee in C_COMPILE_ENV_LIST: vv = self.build_environ.get(ee) -- 2.39.2