mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-01-01 05:35:46 +01:00
Remove TtH authsoup debug dump.
This commit is contained in:
parent
69507816a4
commit
be4e3610d5
1 changed files with 2 additions and 2 deletions
|
|
@ -173,7 +173,7 @@ class TwistingTheHellmouthSiteAdapter(BaseSiteAdapter):
|
|||
authorsoup = self.make_soup(authordata)
|
||||
# author can have several pages, scan until we find it.
|
||||
# find('a', href=re.compile(r"^/Story-"+self.story.getMetadata('storyId')+'/')) ):
|
||||
logger.info("authsoup:%s"%authorsoup)
|
||||
#logger.info("authsoup:%s"%authorsoup)
|
||||
while( not authorsoup.find('div', {'id':'st'+self.story.getMetadata('storyId'), 'class':re.compile(r"storylistitem")}) ):
|
||||
nextarrow = authorsoup.find('a', {'class':'arrowf'})
|
||||
if not nextarrow:
|
||||
|
|
@ -187,7 +187,7 @@ class TwistingTheHellmouthSiteAdapter(BaseSiteAdapter):
|
|||
nextpage = 'http://'+self.host+nextarrow['href']
|
||||
logger.debug("**AUTHOR** nextpage URL: "+nextpage)
|
||||
authordata = self._fetchUrl(nextpage)
|
||||
logger.info("authsoup:%s"%authorsoup)
|
||||
#logger.info("authsoup:%s"%authorsoup)
|
||||
descurl=nextpage
|
||||
authorsoup = self.make_soup(authordata)
|
||||
except urllib2.HTTPError, e:
|
||||
|
|
|
|||
Loading…
Reference in a new issue