We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4040030 + 3e37d4a commit 81aed7aCopy full SHA for 81aed7a
cime_config/customize/case_post_run_io.py
@@ -3,7 +3,11 @@
3
"""
4
import os
5
from CIME.XML.standard_module_setup import *
6
-from CIME.utils import new_lid, run_and_log_case_status
+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
11
12
logger = logging.getLogger(__name__)
13
0 commit comments