Skip to content

Commit

Permalink
Fixed input file paths in template for rms script to be generated
Browse files Browse the repository at this point in the history
  • Loading branch information
oddvarlia committed Oct 1, 2024
1 parent b5b3861 commit 8479f50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/subscript/field_statistics/field_statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -952,11 +952,11 @@ def generate_script(
ERT_CONFIG_PATH = "{ert_config_path}"
GLOBAL_VARIABLES_FILE = \
ERT_CONFIG_PATH / Path("../../fmuconfig/output/global_variables.yml")
Path(ERT_CONFIG_PATH) / Path("../../fmuconfig/output/global_variables.yml")
FIELD_STAT_CONFIG_FILE = "{field_stat_config_file}"
FIELD_STAT_CONFIG_FILE = Path(ERT_CONFIG_PATH) / Path("{field_stat_config_file}")
RESULT_PATH = "{result_path}"
RESULT_PATH = Path("{result_path}")
LABEL = "drogon"
Expand Down

0 comments on commit 8479f50

Please sign in to comment.