Skip to content

Commit

Permalink
Fix ocean stating from flat structure (#1531)
Browse files Browse the repository at this point in the history
A typo led to the same variable being defined twice instead of the
variable that was supposed to be defined.

Fixes #1530
  • Loading branch information
WalterKolczynski-NOAA authored Apr 26, 2023
1 parent 1e4a24c commit 789ae97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/setup_expt.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def fill_COMROT_cycled(host, inputs):
do_med = False
# ocean and ice have the same filenames for warm and cold
src_ocn_rst_dir = os.path.join('ocean', 'RESTART')
src_ocn_rst_dir = 'ocean'
src_ocn_anl_dir = 'ocean'
src_ice_dir = os.path.join('ice', 'RESTART')
src_atm_anl_dir = 'atmos'
else:
Expand Down

0 comments on commit 789ae97

Please sign in to comment.