Fix adapter_fictionmaniatv image page parsing

This commit is contained in:
Smut Andrea 2020-04-25 16:45:14 -07:00 committed by Jim Miller
parent 56e91c1f73
commit 0107ce7d4d

View file

@ -189,7 +189,7 @@ class FictionManiaTVAdapter(BaseSiteAdapter):
## fetching SWI version now instead of text.
htmlurl = url.replace('readtextstory','readhtmlstory')
soup = self._customized_fetch_url(htmlurl)
div = soup.find('div',style="margin-left:10ex;margin-right:10em")
div = soup.find('div',style="margin-left:10ex;margin-right:10ex")
if div:
return self.utf8FromSoup(htmlurl,div)
else: