From 2b8c7739a0ea1ee892d1807e60342e2f59c2f021 Mon Sep 17 00:00:00 2001 From: swerling Date: Sun, 18 Mar 2018 17:48:01 -0400 Subject: [PATCH] fix to al-monitor.recipe - prev version was getting confused by anchor tags --- recipes/al_monitor.recipe | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/al_monitor.recipe b/recipes/al_monitor.recipe index 93ae4b4d02..3a773c1d6a 100644 --- a/recipes/al_monitor.recipe +++ b/recipes/al_monitor.recipe @@ -95,7 +95,7 @@ class AlMonitor(BasicNewsRecipe): self._p('Got section. Processing links.') - for link in soup.findAll('a'): + for link in soup.findAll('a', href=True): href = link.get('href') text = self.text(link) if text and ('pulse/originals' in href):