Skip to content

Commit

Permalink
Merge pull request #4729 from jedwards4b/fix_eronious_cprnc_message
Browse files Browse the repository at this point in the history
fix an eronious message from cprnc
  • Loading branch information
jedwards4b authored Jan 6, 2025
2 parents ac8e583 + 15b4b4d commit ef81824
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CIME/hist_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""
Expand Down

0 comments on commit ef81824

Please sign in to comment.