mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-29 04:14:15 +02:00
...
This commit is contained in:
parent
cb4aaaef11
commit
967ec83a7c
1 changed files with 5 additions and 7 deletions
|
|
@ -119,10 +119,8 @@ def find_articles(self, url):
|
|||
}
|
||||
|
||||
def parse_index(self):
|
||||
try:
|
||||
feeds = []
|
||||
for title, href in self.find_sections():
|
||||
feeds.append((title, list(self.find_articles(href))))
|
||||
return feeds
|
||||
except:
|
||||
raise NotImplementedError
|
||||
feeds = []
|
||||
for title, href in self.find_sections():
|
||||
feeds.append((title, list(self.find_articles(href))))
|
||||
return feeds
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue