This commit is contained in:
Kovid Goyal 2014-11-02 12:29:30 +05:30
parent e4ab7705de
commit eeed388a5b

View File

@ -325,11 +325,13 @@ 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:
#: To ignore articles with the same title, set this to::
#: ignore_duplicate_articles = {'title'}
#: To use URLs instead, set it to:
#:
#: To use URLs instead, set it to::
#: ignore_duplicate_articles = {'url'}
#: To match on title or URL, set it to:
#:
#: To match on title or URL, set it to::
#: ignore_duplicate_articles = {'title', 'url'}
ignore_duplicate_articles = None