diff --git a/config/acme/config_archive.xml b/config/acme/config_archive.xml
index 94f0e940dae..eefedb5037a 100644
--- a/config/acme/config_archive.xml
+++ b/config/acme/config_archive.xml
@@ -86,7 +86,7 @@
unset
rpointer.ice$NINST_STRING
- ./mpascice$NINST_STRING.rst.$MPAS_DATENAME.nc
+ $MPAS_DATENAME
@@ -119,7 +119,7 @@
unset
rpointer.ocn$NINST_STRING
- ./mpaso$NINST_STRING.rst.$MPAS_DATENAME.nc
+ $MPAS_DATENAME
diff --git a/scripts/lib/CIME/case_st_archive.py b/scripts/lib/CIME/case_st_archive.py
index 82aeb40eb80..6b9c1c1fc4a 100644
--- a/scripts/lib/CIME/case_st_archive.py
+++ b/scripts/lib/CIME/case_st_archive.py
@@ -144,11 +144,13 @@ def _datetime_str_mpas(date):
'0011-12-09_00435'
"""
- format_string = "{year:04d}-{month:02d}-{day:02d}_{seconds:05d}"
+ format_string = "{year:04d}-{month:02d}-{day:02d}_{hours:02d}:{minutes:02d}:{seconds:02d}"
return format_string.format(year = date.year,
month = date.month,
day = date.day,
- seconds = _get_day_second(date))
+ hours = date.hour,
+ minutes = date.minute,
+ seconds = date.second)
###############################################################################
def _get_ninst_info(case, compclass):