mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix #1588 (Recipe for "The Economist")
This commit is contained in:
parent
ba463864d0
commit
399b6bbcb0
@ -49,8 +49,10 @@ class Economist(BasicNewsRecipe):
|
|||||||
if not index_started:
|
if not index_started:
|
||||||
continue
|
continue
|
||||||
text = string.capwords(text)
|
text = string.capwords(text)
|
||||||
feeds[text] = []
|
if text not in feeds.keys():
|
||||||
ans.append(text)
|
feeds[text] = []
|
||||||
|
if text not in ans:
|
||||||
|
ans.append(text)
|
||||||
key = text
|
key = text
|
||||||
continue
|
continue
|
||||||
if key is None:
|
if key is None:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user