mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 09:43:48 +02:00
Fix #1588 (Recipe for "The Economist")
This commit is contained in:
parent
ba463864d0
commit
399b6bbcb0
1 changed files with 4 additions and 2 deletions
|
|
@ -49,8 +49,10 @@ def parse_index(self):
|
|||
if not index_started:
|
||||
continue
|
||||
text = string.capwords(text)
|
||||
feeds[text] = []
|
||||
ans.append(text)
|
||||
if text not in feeds.keys():
|
||||
feeds[text] = []
|
||||
if text not in ans:
|
||||
ans.append(text)
|
||||
key = text
|
||||
continue
|
||||
if key is None:
|
||||
|
|
|
|||
Loading…
Reference in a new issue