diff --git a/recipes/new_yorker.recipe b/recipes/new_yorker.recipe index 0335a71b5b..a109264742 100644 --- a/recipes/new_yorker.recipe +++ b/recipes/new_yorker.recipe @@ -135,7 +135,7 @@ class NewYorker(BasicNewsRecipe): # Get description body = story.find(attrs={'class': 'River__dek___CayIg'}) if body is not None: - desc = body.contents[0] + desc = str(body.contents[0]) self.log('Found article:', title) self.log('\t' + url)