Skip to content

Commit

Permalink
shorten name model_dataset_created_on -> created_on
Browse files Browse the repository at this point in the history
  • Loading branch information
OnnoEbbens committed Jul 4, 2023
1 parent b4b5256 commit 4fba381
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nlmod/dims/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def set_ds_attrs(ds, model_name, model_ws, mfversion="mf6", exe_name=None):
ds.attrs["model_name"] = model_name
ds.attrs["mfversion"] = mfversion
fmt = "%Y%m%d_%H:%M:%S"
ds.attrs["model_dataset_created_on"] = dt.datetime.now().strftime(fmt)
ds.attrs["created_on"] = dt.datetime.now().strftime(fmt)

if exe_name is None:
exe_name = util.get_exe_path(mfversion)
Expand Down

0 comments on commit 4fba381

Please sign in to comment.