Skip to content

Commit

Permalink
fix print statement in ensemble.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Dec 1, 2023
1 parent d8e9b89 commit 3888a9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/statistical_ensemble_test/ensemble.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def main(argv):
run_type = 'ensemble'
clone_count = ens_size - 1
if ens_size > 999:
print 'Error: cannot have an ensemble size greater than 999.'
print('Error: cannot have an ensemble size greater than 999.')
sys.exit()
print('STATUS: ensemble size = ' + str(ens_size))

Expand Down

0 comments on commit 3888a9b

Please sign in to comment.