Skip to content

Commit 016db43

Browse files
committed
Remove trailing spaces
1 parent be4d6b6 commit 016db43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cime_config/buildlib

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def _build_cam():
150150
makefile = os.path.join(casetools, "Makefile")
151151

152152
cmd = f"{gmake} complib -j {gmake_j} MODEL=cam COMPLIB={complib}"
153-
cmd += f" -f {makefile} {get_standard_makefile_args(case)} "
153+
cmd += f" -f {makefile} {get_standard_makefile_args(case)}"
154154

155155
# Add C Pre-Processor (CPP) definitions, if present:
156156
if config.cpp_defs:
@@ -174,7 +174,7 @@ def _build_cam():
174174
cmd += " OPTIONAL_MPAS_FEATURES=\"" + " ".join(optional_mpas_features) + "\""
175175

176176
retcode, out, err = run_cmd(cmd)
177-
_LOGGER.info("%s: \n\n output:\n %s \n\n err:\n\n%s\n", cmd, out, err)
177+
_LOGGER.info("Command %s:\n\nstdout:\n%s\n\nstderr:\n%s\n", cmd, out, err)
178178
expect(retcode == 0, f"Command {cmd} failed with rc={retcode}")
179179

180180
def _prepare_mpas(case: Case) -> None:

0 commit comments

Comments
 (0)