mirror of
https://github.com/wassname/FanFicFare.git
synced 2026-09-10 11:40:24 +08:00
Fixed summary parsing error for the http://voracity2.e-fic.com/ adapter
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user