mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-05 15:13:39 +02:00
...
This commit is contained in:
parent
7e29ea72ad
commit
fe949eca07
2 changed files with 6 additions and 4 deletions
|
|
@ -114,7 +114,9 @@ def economist_parse_index(self):
|
|||
'description':'', 'date':''})
|
||||
|
||||
if articles:
|
||||
feeds[section_title] = articles
|
||||
if section_title not in feeds:
|
||||
feeds[section_title] = []
|
||||
feeds[section_title] += articles
|
||||
|
||||
ans = [(key, val) for key, val in feeds.iteritems()]
|
||||
if not ans:
|
||||
|
|
|
|||
|
|
@ -13,9 +13,9 @@ First sequences:
|
|||
0b0110 : 80 2
|
||||
0b0111 : 80 2 80
|
||||
|
||||
Other sequences:
|
||||
0b0101 : 4 1a
|
||||
0b0001 : c b1
|
||||
0b0001 = 0
|
||||
0b0010 = 0
|
||||
0b0100 = 2
|
||||
|
||||
Opening record
|
||||
----------------
|
||||
|
|
|
|||
Loading…
Reference in a new issue