From f256940426b2b060698320a5ddc227cb1b4336d8 Mon Sep 17 00:00:00 2001 From: MET Tools Test Account Date: Thu, 5 Sep 2024 19:43:18 +0000 Subject: [PATCH] Per #2924, forgot to add an else to print an error --- src/libcode/vx_statistics/read_climo.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/libcode/vx_statistics/read_climo.cc b/src/libcode/vx_statistics/read_climo.cc index 50882aac51..f5ec38e33e 100644 --- a/src/libcode/vx_statistics/read_climo.cc +++ b/src/libcode/vx_statistics/read_climo.cc @@ -122,6 +122,11 @@ DataPlaneArray read_climo_data_plane_array(Dictionary *dict, else if(dict->parent()->lookup(cs.c_str(), false)) { regrid_parent_dict = dict->parent()->lookup_dictionary(climo_name); } + else { + mlog << Error << "\n" << method_name + << "Trouble parsing configuration entry: " << cs << "\n"; + exit(1); + } // Parse the "regrid" dictionary RegridInfo regrid_info = parse_conf_regrid(regrid_parent_dict);