Skip to content

Commit

Permalink
Fix interval issue with GEFS XML generation
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterKolczynski-NOAA committed Sep 17, 2024
1 parent f6141f8 commit 634e326
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/rocoto/gefs_xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def __init__(self, app_config: AppConfig, rocoto_config: Dict) -> None:
def get_cycledefs(self):
sdate = self._base['SDATE_GFS']
edate = self._base['EDATE']
interval = self.interval_gfs
interval = self._app_config.interval_gfs
sdate_str = sdate.strftime("%Y%m%d%H%M")
edate_str = edate.strftime("%Y%m%d%H%M")
interval_str = timedelta_to_HMS(interval)
Expand Down

0 comments on commit 634e326

Please sign in to comment.