Skip to content

Commit

Permalink
fix: Fix bug in keyword no default present value
Browse files Browse the repository at this point in the history
  • Loading branch information
drorganvidez authored Feb 1, 2024
1 parent 8ec53c8 commit a994f0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/zenodo.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def zenodo_create_new_deposition(dataset: DataSet) -> dict:
**({'affiliation': author.affiliation} if author.affiliation else {}),
**({'orcid': author.orcid} if author.orcid else {})
} for author in dataset.ds_meta_data.authors],
'keywords': dataset.ds_meta_data.tags.split(", "),
'keywords': ["uvlhub"] if not dataset.ds_meta_data.tags else dataset.ds_meta_data.tags.split(", ") + ["uvlhub"],
'access_right': 'open',
'license': 'CC-BY-4.0'
}
Expand Down

0 comments on commit a994f0b

Please sign in to comment.