From e59b97d1bc034ba99a9afaa1c6d094f8c37d451b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 6 Nov 2014 09:57:32 +0530 Subject: [PATCH] ... --- src/calibre/web/feeds/news.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/calibre/web/feeds/news.py b/src/calibre/web/feeds/news.py index 3cb9776403..d8faa92e81 100644 --- a/src/calibre/web/feeds/news.py +++ b/src/calibre/web/feeds/news.py @@ -326,12 +326,15 @@ class BasicNewsRecipe(Recipe): #: Ignore duplicates of articles that are present in more than one section. #: A duplicate article is an article that has the same title and/or URL. #: To ignore articles with the same title, set this to:: + #: #: ignore_duplicate_articles = {'title'} #: #: To use URLs instead, set it to:: + #: #: ignore_duplicate_articles = {'url'} #: #: To match on title or URL, set it to:: + #: #: ignore_duplicate_articles = {'title', 'url'} ignore_duplicate_articles = None