Skip to content

Commit

Permalink
fix: remove the lowercase when saving the filename in the sorted list…
Browse files Browse the repository at this point in the history
… of files (#1448)
  • Loading branch information
uramirez8707 authored Jan 25, 2024
1 parent 913f8aa commit bb6de93
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions diag_manager/fms_diag_yaml.F90
Original file line number Diff line number Diff line change
Expand Up @@ -414,8 +414,7 @@ subroutine diag_yaml_object_init(diag_subset_output)
call fill_in_diag_files(diag_yaml_id, diag_file_ids(i), diag_yaml%diag_files(file_count))

!> Save the file name in the file_list
!! The diag_table is not case sensitive (so we are saving it as lowercase)
file_list%file_name(file_count) = lowercase(trim(diag_yaml%diag_files(file_count)%file_fname)//c_null_char)
file_list%file_name(file_count) = trim(diag_yaml%diag_files(file_count)%file_fname)//c_null_char
file_list%diag_file_indices(file_count) = file_count

nvars = 0
Expand Down

0 comments on commit bb6de93

Please sign in to comment.