mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2025-12-06 08:52:55 +01:00
Fix for adapter_spiritfanfictioncom.py
Commenters are being identified as authors since webpage change.
This commit is contained in:
parent
5567e6417d
commit
21ec27ffd4
1 changed files with 1 additions and 1 deletions
|
|
@ -99,7 +99,7 @@ class SpiritFanfictionComAdapter(BaseSiteAdapter):
|
|||
|
||||
# Authors
|
||||
# Find authorid and URL
|
||||
authors = soup.findAll('span', {'class':'usuario'})
|
||||
authors = (title.find_next('div', {'class':'left'})).findAll('span', {'class':'usuario'})
|
||||
|
||||
for author in authors:
|
||||
self.story.addToList('authorId', author.find('a')['href'].split('/')[-1])
|
||||
|
|
|
|||
Loading…
Reference in a new issue