mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-02 13:23:03 +02:00
Update financial_times_uk.recipe
Fixed recipe by removing space.
This commit is contained in:
parent
03332d261f
commit
d606f0f2d4
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ def parse_index(self):
|
|||
section_title = 'Untitled'
|
||||
|
||||
for column in soup.findAll('div', attrs={'class':'feedBoxes clearfix'}):
|
||||
for section in column. findAll('div', attrs={'class':'feedBox'}):
|
||||
for section in column.findAll('div', attrs={'class':'feedBox'}):
|
||||
sectiontitle=self.tag_to_string(section.find('h4'))
|
||||
if '...' not in sectiontitle:
|
||||
section_title=sectiontitle
|
||||
|
|
|
|||
Loading…
Reference in a new issue