Skip to content

Commit

Permalink
Fix cycled metp cycledef
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterKolczynski-NOAA committed Oct 16, 2024
1 parent 1f1d29b commit d54bc65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/rocoto/gfs_cycled_xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def get_cycledefs(self):
if interval_gfs < to_timedelta('24H'):
# Run verification at 18z, no matter what if there is more than one gfs per day
sdate_metp = sdate_gfs.replace(hour=18)
edate_metp = (edate_gfs - to_timedelta('24H')).replace(hour=18)
edate_metp = edate_gfs.replace(hour=18)
interval_metp = to_timedelta('24H')
sdate_metp_str = sdate_metp.strftime("%Y%m%d%H%M")
edate_metp_str = edate_metp.strftime("%Y%m%d%H%M")
Expand Down

0 comments on commit d54bc65

Please sign in to comment.