From e235a6bfffb3d8ad8c15f2cbcbdd434df1619881 Mon Sep 17 00:00:00 2001 From: Chris Mackey Date: Tue, 8 Oct 2024 16:33:02 -0700 Subject: [PATCH] fix(download): Fix bug in reading EPW path --- ladybug_rhino/download.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ladybug_rhino/download.py b/ladybug_rhino/download.py index 9210bad..3a50d93 100644 --- a/ladybug_rhino/download.py +++ b/ladybug_rhino/download.py @@ -100,9 +100,9 @@ def extract_project_info(project_info_json): if f.lower().endswith(f_check): # file type found file_checklist.pop(i) if f_check == '.epw': - epw_path = f + epw_path = os.path.join(weather_url, f) elif f_check == '.stat': - stat_path = f + stat_path = os.path.join(weather_url, f) break if len(file_checklist) != 0: msg = 'The following directory does not contain these files '\