Skip to content

Commit

Permalink
Update ckanext/recombinant/logic.py
Browse files Browse the repository at this point in the history
Co-authored-by: Ian Ward <ian@excess.org>
  • Loading branch information
JVickery-TBS and wardi authored Dec 16, 2024
1 parent 74096d2 commit 3ed81b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckanext/recombinant/logic.py
Original file line number Diff line number Diff line change
Expand Up @@ -455,5 +455,5 @@ def recombinant_datastore_upsert(up_func, context, data_dict):
raise
for record_errs in _error_dict['records']:
for field, field_errs in record_errs.items():
record_errs[field] = [e for e in format_trigger_error(field_errs)]
record_errs[field] = list(format_trigger_error(field_errs))
raise ValidationError(_error_dict)

0 comments on commit 3ed81b6

Please sign in to comment.