From 15b4b4db998172b239536f7060a9e75f40a82f92 Mon Sep 17 00:00:00 2001 From: Jim Edwards Date: Mon, 6 Jan 2025 11:41:09 -0700 Subject: [PATCH] fix an eronious message from cprnc --- CIME/hist_utils.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CIME/hist_utils.py b/CIME/hist_utils.py index c5206cff05a..18bb4827ee0 100644 --- a/CIME/hist_utils.py +++ b/CIME/hist_utils.py @@ -759,6 +759,9 @@ def get_ts_synopsis(comments): if comments == "" or "\n" not in comments: return comments + if comments.endswith("PASS"): + return "" + # Empty synopsis when files are identicial if re.search(IDENTICAL, comments) is not None: return ""