Change wraithbaitcom to use BeautifulSoup, not Stone for blockquote's in text.

This commit is contained in:
Jim Miller 2012-07-12 12:33:09 -05:00
parent 312b6b2c3e
commit 1b72bbfba9

View file

@ -215,8 +215,7 @@ class WraithBaitComAdapter(BaseSiteAdapter):
logging.debug('Getting chapter text from: %s' % url)
soup = bs.BeautifulStoneSoup(self._fetchUrl(url),
selfClosingTags=('br','hr')) # otherwise soup eats the br/hr tags.
soup = bs.BeautifulSoup(self._fetchUrl(url))
div = soup.find('div', {'id' : 'story'})