Skip to content
Snippets Groups Projects
Commit 73c5e139 authored by Lene Wasskog's avatar Lene Wasskog
Browse files

fix: Path error

parent 05425ed5
No related branches found
No related tags found
No related merge requests found
Pipeline #5984 passed
......@@ -171,8 +171,8 @@ if __name__ == "__main__":
sys.exit()
# Ensure that output year dirs exist
result_tif_year_dir = f"{result_tif_base_dir}/{year}"
result_mapfile_year_dir = f"{result_mapfile_base_dir}/{year}"
result_tif_year_dir = f"{result_tif_base_dir}{year}"
result_mapfile_year_dir = f"{result_mapfile_base_dir}{year}"
os.makedirs(result_tif_year_dir, exist_ok=True)
os.makedirs(result_mapfile_year_dir, exist_ok=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment