Skip to content

Commit

Permalink
YDA-5568: fix contributors for OAI_DC format
Browse files Browse the repository at this point in the history
When using the OAI_DC format, MOAI overwrote the contributor
entries with creator entries.
  • Loading branch information
stsnel committed Feb 19, 2024
1 parent a8c76bf commit 1322593
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moai/metadata/oaidc.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def __call__(self, element, metadata):
if not isinstance(con_list, list):
con_list = [con_list]

for dccon in creator_list:
for dccon in con_list:
name = dccon['Name']['Given_Name'] + ' ' + dccon['Name']['Family_Name']

affiliation_list = dccon['Affiliation']
Expand Down

0 comments on commit 1322593

Please sign in to comment.