mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-01-30 12:12:39 +01:00
Fixed summary parsing error for the http://voracity2.e-fic.com/ adapter
This commit is contained in:
parent
eba312e777
commit
f4da7dc1bd
1 changed files with 1 additions and 1 deletions
|
|
@ -134,7 +134,7 @@ class Voracity2EficComAdapter(BaseSiteAdapter):
|
|||
# e-fiction sites that allow their users to include
|
||||
# arbitrary markup into their summaries and the
|
||||
# horrible HTML markup.
|
||||
if sibling.name == 'b' and all(sibling.name == 'br' for sibling in sibling.findPreviousSiblings(limit=2)):
|
||||
if sibling.name == 'b' and sibling.findPreviousSibling().name == 'br':
|
||||
break
|
||||
|
||||
if keep_summary_html:
|
||||
|
|
|
|||
Loading…
Reference in a new issue