Switch ponyfictionarchivenet from BeautifulStoneSoup to BeautifulSoup.

This commit is contained in:
Jim Miller
2012-11-05 11:43:42 -06:00
parent f2f8f0af37
commit 36b377fcbf
@@ -237,8 +237,7 @@ class PonyFictionArchiveNetAdapter(BaseSiteAdapter):
logger.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)) # otherwise soup eats the br/hr tags.
div = soup.find('div', {'id' : 'story'})