Fix #2044000 [Cannot download The New Yorker Magazine using Fetch News](https://bugs.launchpad.net/calibre/+bug/2044000)

This commit is contained in:
Kovid Goyal 2023-11-20 21:47:28 +05:30
parent 402b2a589e
commit 0419739c50
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -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)