From af9753bc50233eb8f9daa89eac28f09b00ead776 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 6 Mar 2012 21:34:09 +0530 Subject: [PATCH] Fix #948091 (Updated recipe for La Jornada) --- recipes/la_jornada.recipe | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes/la_jornada.recipe b/recipes/la_jornada.recipe index 71c526a0a0..74565ab179 100644 --- a/recipes/la_jornada.recipe +++ b/recipes/la_jornada.recipe @@ -1,5 +1,5 @@ __license__ = 'GPL v3' -__copyright__ = '2010, Darko Miletic , Rogelio Domínguez ' +__copyright__ = '2010-2012, Darko Miletic , Rogelio Domínguez ' ''' www.jornada.unam.mx ''' @@ -86,6 +86,6 @@ class LaJornada_mx(BasicNewsRecipe): return soup def get_article_url(self, article): - rurl = article.get('link', None) + rurl = article.get('guid', None) return rurl.rpartition('&partner=')[0]