Skip to content

Commit

Permalink
Per #2924, revise the climo_name dictionary lookup logic when parsing…
Browse files Browse the repository at this point in the history
… the regrid dictionary.
  • Loading branch information
JohnHalleyGotway committed Sep 13, 2024
1 parent 364ec6d commit c71c72e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libcode/vx_statistics/read_climo.cc
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ DataPlaneArray read_climo_data_plane_array(Dictionary *dict,
// (e.g. "config.fcst.climo_mean.regrid") or default
// location (e.g. "config.climo_mean.regrid")
RegridInfo regrid_info = parse_conf_regrid(
dict->lookup_dictionary(climo_name, false, false, false),
dict->parent()->lookup_dictionary(climo_name, false, false, false));
dict->lookup_dictionary(climo_name, false),
dict->parent()->lookup_dictionary(climo_name, false));

// Parse the "time_interp_method"
cs << cs_erase << climo_name << "." << conf_key_time_interp_method;
Expand Down

0 comments on commit c71c72e

Please sign in to comment.