This commit is contained in:
Kovid Goyal 2018-03-19 08:46:05 +05:30
commit ad9cefeda3
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -95,7 +95,7 @@ class AlMonitor(BasicNewsRecipe):
self._p('Got section. Processing links.') self._p('Got section. Processing links.')
for link in soup.findAll('a'): for link in soup.findAll('a', href=True):
href = link.get('href') href = link.get('href')
text = self.text(link) text = self.text(link)
if text and ('pulse/originals' in href): if text and ('pulse/originals' in href):