Skip to content

Commit

Permalink
Fix missing brace
Browse files Browse the repository at this point in the history
  • Loading branch information
jgfouca committed May 24, 2017
1 parent 769e1c7 commit d7ac2a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/lib/CIME/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def _build_model(build_threaded, exeroot, clm_config_opts, incroot, complist,
arg_stderr=subprocess.STDOUT)[0]
f.close()
analyze_build_log("{} exe".format(cime_model), file_build, compiler)
expect(stat == 0, "BUILD FAIL: buildexe failed, cat {}".format(file_build)
expect(stat == 0, "BUILD FAIL: buildexe failed, cat {}".format(file_build))

# Copy the just-built ${MODEL}.exe to ${MODEL}.exe.$LID
shutil.copy("{}/{}.exe".format(exeroot, cime_model), "{}/{}.exe.{}".format(exeroot, cime_model, lid))
Expand Down

0 comments on commit d7ac2a9

Please sign in to comment.