Skip to content

Commit

Permalink
Merge pull request #914 from samuelveigarangel/fix-parameter_extracts…
Browse files Browse the repository at this point in the history
…_normalized_email

Fix: parameter extracts_normalized_email
  • Loading branch information
samuelveigarangel authored Jan 15, 2025
2 parents c4d601c + f23e398 commit c830ec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion article/sources/xmlsps.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def create_or_update_researchers(xmltree, user, item):
else:
for aff in affs:
raw_email = author.get("email") or aff.get("email")
email = extracts_normalized_email(data=raw_email)
email = extracts_normalized_email(raw_email=raw_email)
aff_data = {
**researcher_data,
"aff_name": aff.get("orgname"),
Expand Down

0 comments on commit c830ec5

Please sign in to comment.