diff --git a/fanficfare/adapters/adapter_ficbooknet.py b/fanficfare/adapters/adapter_ficbooknet.py index 8c415293..da404c4d 100644 --- a/fanficfare/adapters/adapter_ficbooknet.py +++ b/fanficfare/adapters/adapter_ficbooknet.py @@ -99,7 +99,7 @@ class FicBookNetAdapter(BaseSiteAdapter): # Find authorid and URL from... author url. # assume first avatar-nickname -- there can be a second marked 'beta'. - a = soup.find('a',{'class':'creator-nickname'}) + a = soup.find('a',{'class':'creator-username'}) self.story.setMetadata('authorId',a.text) # Author's name is unique self.story.setMetadata('authorUrl','https://'+self.host+a['href']) self.story.setMetadata('author',a.text)