Skip to content

Commit

Permalink
fix model reading error message in line with spherical geometry being…
Browse files Browse the repository at this point in the history
… read
  • Loading branch information
jvshields committed Oct 4, 2024
1 parent b2dd7b0 commit 704255f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stardis/io/model/marcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ def read_marcs_model(fpath, gzipped=True):
metadata, spherical = read_marcs_metadata(fpath, gzipped=gzipped)
except:
raise ValueError(
"Failed to read metadata from MARCS model file. Make sure that you are specifying if the file is gzipped, and whether the model is spherical or plane-parallel appropriately."
"Failed to read metadata from MARCS model file. Make sure that you are specifying if the file is gzipped appropriately."
)
data = read_marcs_data(fpath, gzipped=gzipped)

Expand Down

0 comments on commit 704255f

Please sign in to comment.