From e0cffc531115c029dadf1397b1b5d45386b2ed46 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 16 Sep 2012 20:13:38 +0530 Subject: [PATCH] Fix #1051586 (Obsolete links in recipe documentation) --- src/calibre/web/feeds/news.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/web/feeds/news.py b/src/calibre/web/feeds/news.py index 153c6b1af0..f494618eaa 100644 --- a/src/calibre/web/feeds/news.py +++ b/src/calibre/web/feeds/news.py @@ -453,11 +453,11 @@ class BasicNewsRecipe(Recipe): Override in a subclass to customize extraction of the :term:`URL` that points to the content for each article. Return the article URL. It is called with `article`, an object representing a parsed article - from a feed. See `feedparser `_. + from a feed. See `feedparser `_. By default it looks for the original link (for feeds syndicated via a service like feedburner or pheedo) and if found, returns that or else returns - `article.link `_. + `article.link `_. ''' for key in article.keys(): if key.endswith('_origlink'):