Skip to content

Commit

Permalink
fix datatype conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Dec 20, 2023
1 parent b7fb478 commit a488510
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/lib/CIME/case/case.py
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ def configure(self, compset_name, grid_name, machine_name=None,

self._setup_mach_pes(pecount, multi_driver, ninst, machine_name, mpilib)

if multi_driver and ninst>1:
if multi_driver and int(ninst) > 1:
logger.info(" Driver/Coupler has %s instances" % ninst)

#--------------------------------------------
Expand Down

0 comments on commit a488510

Please sign in to comment.