Skip to content

Commit

Permalink
Merge branch 'jasonb5/cime/fix-cime-api' into next (PR #6550)
Browse files Browse the repository at this point in the history
Updates cime imports

Updates CIME imports to support CIME/4660.

[BFB]
  • Loading branch information
jgfouca committed Aug 15, 2024
2 parents 4040030 + 3e37d4a commit 81aed7a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cime_config/customize/case_post_run_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
"""
import os
from CIME.XML.standard_module_setup import *
from CIME.utils import new_lid, run_and_log_case_status
try:
from CIME.utils import new_lid, run_and_log_case_status
except ImportError:
from CIME.utils import new_lid
from CIME.status import run_and_log_case_status

logger = logging.getLogger(__name__)

Expand Down

0 comments on commit 81aed7a

Please sign in to comment.