Fix #2012 (epub output problems on PRS505)

This commit is contained in:
Kovid Goyal 2009-03-08 21:47:48 -07:00
parent 06f67d6cde
commit 8dcb895f79

View File

@ -45,3 +45,7 @@ class USAToday(BasicNewsRecipe):
def print_version(self, url):
return 'http://www.printthis.clickability.com/pt/printThis?clickMap=printThis&fb=Y&url=' + url
def postprocess_html(self, soup, first_fetch):
for t in soup.findAll(['table', 'tr', 'td']):
t.name = 'div'
return soup