From 565712540458fdaf6854dd40fe7046313a1930e7 Mon Sep 17 00:00:00 2001 From: James Edwards Date: Tue, 1 Aug 2023 08:03:18 -0600 Subject: [PATCH] remove redundent ERROR --- CIME/XML/grids.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CIME/XML/grids.py b/CIME/XML/grids.py index b98a89b963b..e34aacf2d01 100644 --- a/CIME/XML/grids.py +++ b/CIME/XML/grids.py @@ -27,7 +27,7 @@ def __init__(self, infile=None, files=None, comp_interface=None): schema = files.get_schema("GRIDS_SPEC_FILE") expect( os.path.isfile(infile) and os.access(infile, os.R_OK), - f"ERROR: grid file not found {infile}", + f" grid file not found {infile}", ) try: GenericXML.__init__(self, infile, schema)