From bcd52754635e858906c2b0dafd221cf74b9655e1 Mon Sep 17 00:00:00 2001 From: u25867 Date: Thu, 23 Nov 2023 15:35:41 +1100 Subject: [PATCH] fixed typo in url reference --- uncoverml/interface_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uncoverml/interface_utils.py b/uncoverml/interface_utils.py index df5352df..943bd63c 100644 --- a/uncoverml/interface_utils.py +++ b/uncoverml/interface_utils.py @@ -97,7 +97,7 @@ def read_presigned_urls_and_upload(config, job_type): files_uploaded = 0 for url_info in upload_urls_info: # Get the name of the file to upload for the AWS key - current_file_key = url['fields']['key'] + current_file_key = url_info['fields']['key'] key_parts = current_file_key.split('/') upload_file_name = key_parts[-1]