Skip to content

Commit

Permalink
fix typo for sname
Browse files Browse the repository at this point in the history
  • Loading branch information
brianpm committed Oct 23, 2024
1 parent c9759dc commit 13c0620
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helper_scripts/generate_adf_config_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def generate_adf_config(cupid_file, adf_file, out_file):

a_dict["diag_basic_info"]["num_procs"] = c_dict["timeseries"].get("num_procs", 1)
a_dict["diag_basic_info"]["cam_regrid_loc"] = "/".join([DOUT, "proc", "regrid"]) # This is where ADF will make "regrid" files
a_dict["diag_basic_info"]["cam_diag_plot_loc"] = "/".join([c_dict["sname"], "ADF"]) # this is where ADF will put plots, and "website" directory
a_dict["diag_basic_info"]["cam_diag_plot_loc"] = "/".join([c_dict['data_sources']["sname"], "ADF"]) # this is where ADF will put plots, and "website" directory
a_dict["user"] = os.getenv("USER")

with open(out_file, "w") as f:
Expand Down

0 comments on commit 13c0620

Please sign in to comment.