Skip to content

Commit

Permalink
Merge pull request #4672 from ESMCI/jgfouca/fix_append_key
Browse files Browse the repository at this point in the history
Fix for PES append feature
  • Loading branch information
jedwards4b authored Aug 30, 2024
2 parents c571384 + 7654e79 commit 8238b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CIME/case/case.py
Original file line number Diff line number Diff line change
Expand Up @@ -1234,7 +1234,7 @@ def _setup_mach_pes(self, pecount, multi_driver, ninst, machine_name, mpilib):
and value.endswith("'")
):
value = value[1:-1]
if append[key]:
if key in append and append[key]:
ovalue = self.get_value(key)

self.set_value(key, value + " " + ovalue)
Expand Down

0 comments on commit 8238b66

Please sign in to comment.