Skip to content

Commit

Permalink
Reapplying fix (json_data_dict -> json_data_dict_list[i]) in exceptio…
Browse files Browse the repository at this point in the history
…n. Fix

was unintentionally removed when re-adding exceptions.
  • Loading branch information
DerekFurstPitt committed Oct 18, 2023
1 parent 7067a8d commit c14692e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit c14692e

Please sign in to comment.