Skip to content

Commit

Permalink
Merge pull request #4735 from ESMCI/jgfouca/e3sm_cime_fixes
Browse files Browse the repository at this point in the history
ERS: ninst might be None
  • Loading branch information
jedwards4b authored Jan 21, 2025
2 parents 954266b + 82b7382 commit 65970b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CIME/SystemTests/ers.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def _ers_second_phase(self):
)
ninst = self._case.get_value("NINST")
drvrest = "rpointer.cpl"
if ninst > 1:
if ninst is not None and ninst > 1:
drvrest += "_0001"
drvrest += self._rest_time

Expand Down

0 comments on commit 65970b3

Please sign in to comment.