Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion act/io/arm.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def read_arm_netcdf(
'to use to order the datasets for concatenation'
):
kwargs['combine'] = 'nested'
ds = xr.open_mfdataset(filenames, **kwargs)
ds = xr.open_mfdataset(sorted(filenames), **kwargs)

else:
# When all else fails raise the orginal exception
Expand Down
Loading