mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-05-08 12:36:11 +02:00
Fix for adapter_spikeluvercom desc containing extra stuff.
This commit is contained in:
parent
d65e7bd133
commit
772b58034b
1 changed files with 1 additions and 1 deletions
|
|
@ -126,7 +126,7 @@ class SpikeluverComAdapter(BaseSiteAdapter):
|
|||
# Encountered next label, break. Not as bad as other
|
||||
# e-fiction sites, let's hope this is enough for proper
|
||||
# parsing.
|
||||
if sibling.name == 'span' and sibling.get('class', None) == 'label':
|
||||
if sibling.name == 'span' and 'label' in sibling.get('class', []):
|
||||
break
|
||||
|
||||
if keep_summary_html:
|
||||
|
|
|
|||
Loading…
Reference in a new issue