Skip to content

Commit

Permalink
Fix incorrect creation dates for e3sm_to_cmip maps
Browse files Browse the repository at this point in the history
Compass was prepending `20` to the creation date but our creation
dates already include the full 4-digit year.
  • Loading branch information
xylar committed Feb 18, 2024
1 parent 1e1ac50 commit c4d5585
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@ def run(self):
Run this step of the testcase
"""
super().run()
# more verbose creation date for clarity
creation_date = f'20{self.creation_date}'
creation_date = self.creation_date
make_e3sm_to_cmip_maps(self.config, self.logger, self.mesh_short_name,
creation_date, self.ntasks)

Expand Down

0 comments on commit c4d5585

Please sign in to comment.