From a6e363a450360872f476d1060779a6220a5fc981 Mon Sep 17 00:00:00 2001 From: Beq Date: Mon, 16 Sep 2024 20:02:56 +0100 Subject: [PATCH] make assets iterable --- fsutils/download_list.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fsutils/download_list.py b/fsutils/download_list.py index 8cc69b6ab2..8004dc3883 100644 --- a/fsutils/download_list.py +++ b/fsutils/download_list.py @@ -286,13 +286,13 @@ def gather_build_info(build_type, config): if "downloadable_artifacts" not in build_type: build_type["downloadable_artifacts"] = {} - build_type["downloadable_artifacts"] = { f"{file_key}":{ + build_type["downloadable_artifacts"][f"{file_key}"] = { "file_path": full_file, "file_download_URI": file_URI, "grid": grid, "fs_ver_mgr_platform": config.fs_version_mgr_platform.get(platform_folder), "md5": md5, - }} + } except TypeError: print(f"Error processing files for {platform_folder} in {build_type_dir}")