diff --git a/bin/update_from_dblp.py b/bin/update_from_dblp.py index 39e47d7..80ffe20 100644 --- a/bin/update_from_dblp.py +++ b/bin/update_from_dblp.py @@ -75,10 +75,16 @@ def main(): if "author" in entry.persons: authors = ", ".join([str(author) for author in entry.persons["author"]]) + # Clean-up search string + authors = authors.replace("{", "") + authors = authors.replace("}", "") else: authors = "" if "title" in entry.fields: title = entry.fields["title"] + # Clean-up search string + title = title.replace("{", "") + title = title.replace("}", "") else: title = ""