diff --git a/resources/recipes/calgary_herald.recipe b/resources/recipes/calgary_herald.recipe index e8080d71aa..109089a372 100644 --- a/resources/recipes/calgary_herald.recipe +++ b/resources/recipes/calgary_herald.recipe @@ -98,7 +98,9 @@ class CanWestPaper(BasicNewsRecipe): atag = h1tag.find('a',href=True) if not atag: continue - url = self.url_prefix+'/news/todays-paper/'+atag['href'] + url = atag['href'] + if not url.startswith('http:'): + url = self.url_prefix+'/news/todays-paper/'+atag['href'] #self.log("Section %s" % key) #self.log("url %s" % url) title = self.tag_to_string(atag,False)