Skip to content

Commit 81aed7a

Browse files
committed
Merge branch 'jasonb5/cime/fix-cime-api' into next (PR #6550)
Updates cime imports Updates CIME imports to support CIME/4660. [BFB]
2 parents 4040030 + 3e37d4a commit 81aed7a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

cime_config/customize/case_post_run_io.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
"""
44
import os
55
from CIME.XML.standard_module_setup import *
6-
from CIME.utils import new_lid, run_and_log_case_status
6+
try:
7+
from CIME.utils import new_lid, run_and_log_case_status
8+
except ImportError:
9+
from CIME.utils import new_lid
10+
from CIME.status import run_and_log_case_status
711

812
logger = logging.getLogger(__name__)
913

0 commit comments

Comments
 (0)