diff --git a/server/aap/publish/formatters/aap_bulletinbuilder_formatter.py b/server/aap/publish/formatters/aap_bulletinbuilder_formatter.py index 523b357c6..bedcd0471 100644 --- a/server/aap/publish/formatters/aap_bulletinbuilder_formatter.py +++ b/server/aap/publish/formatters/aap_bulletinbuilder_formatter.py @@ -48,6 +48,8 @@ def format(self, article, subscriber, codes=None): to_ascii(formatted_article.get('abstract', ''))).strip() formatted_article['headline'] = self.get_text_content( to_ascii(formatted_article.get('headline', ''))).strip() + formatted_article['byline'] = self.get_text_content( + to_ascii(formatted_article.get('byline', ''))).strip() # get the first category and derive the locator category = next((iter(formatted_article.get('anpa_category', []))), None)