Skip to content

Commit

Permalink
fix(MFSimulationList): fix comma spacing in error message (#2090)
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed Feb 4, 2024
1 parent e80a007 commit f37610d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flopy/mf6/utils/mfsimlistfile.py
Expand Up @@ -83,7 +83,7 @@ def get_runtime(
if units not in UNITS:
msg = (
"units input variable must be "
+ " ,".join(UNITS)
+ ", ".join(UNITS)
+ f": {units} was specified."
)
raise ValueError(msg)
Expand Down

0 comments on commit f37610d

Please sign in to comment.