From 6f0ba84a61c9ccc77771f476ddf51f343e236102 Mon Sep 17 00:00:00 2001 From: Lene Wasskog <lene.wasskog@nibio.no> Date: Thu, 27 Feb 2025 08:56:49 +0100 Subject: [PATCH] fix: Copy/paste error --- SEPTREFHUM.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SEPTREFHUM.py b/SEPTREFHUM.py index 97408ef..491e27d 100755 --- a/SEPTREFHUM.py +++ b/SEPTREFHUM.py @@ -83,9 +83,9 @@ if len(sys.argv) > 1: else: year = today.year -weather_data_path = weather_data_dir +weather_data_path = infile_path if year != today.year: - weather_data_path = f"{archive_weather_data_dir}{year}/" + weather_data_path = f"{infile_archive_path}{year}/" # Path to store intermediary calculations tmpfile_path = f"tmp/{year}/" -- GitLab