Hi, I made some changes for my own needs to the recipe but want to share them here. Reason was to shorten the title, it got truncated on my reader so I could not distinguish the issues.
(pseudo-patch format

)
Code:
< title = u'Die Zeit Magazine'
> title = u'Die Zeit'
< self.title = self.title + ' ' + self.tag_to_string(h4)
> self.title = self.title + ' ' + re.sub('Ausgabe ', '', self.tag_to_string(h4))
And for a higher resolution cover:
Code:
< self.cover_url = a.img['src']
> self.cover_url = re.sub('icon_', '', a.img['src'])