diff --git a/utils/json_fetcher.py b/utils/json_fetcher.py index 0cfc90430..08a1befdb 100644 --- a/utils/json_fetcher.py +++ b/utils/json_fetcher.py @@ -45,7 +45,7 @@ class JSONFetcher: date_published = dateutil.parser.parse(pubdate) authors = item.get('authors', item.get('author', {})) if isinstance(authors, list): - author_name = [author.get('name', "") for author in authors] + author_name = ', '.join([author.get('name', "") for author in authors]) else: author_name = authors.get('name', "") story = {