From c14692ec1d09411a48556dd34b0af9dbb4932c67 Mon Sep 17 00:00:00 2001 From: DerekFurstPitt Date: Wed, 18 Oct 2023 13:37:21 -0400 Subject: [PATCH] Reapplying fix (json_data_dict -> json_data_dict_list[i]) in exception. Fix was unintentionally removed when re-adding exceptions. --- src/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.py b/src/app.py index bb43b880..e7b2d595 100644 --- a/src/app.py +++ b/src/app.py @@ -4514,7 +4514,7 @@ def create_multiple_component_details(request, normalized_entity_type, user_toke internal_server_error(msg) except schema_errors.NoDataProviderGroupException: # Log the full stack trace, prepend a line with our message - if 'group_uuid' in json_data_dict: + if 'group_uuid' in json_data_dict_list[i]: msg = "Invalid 'group_uuid' value, can't create the entity" else: msg = "The user does not have the correct Globus group associated with, can't create the entity"