Don't insert bozo and format info from the *normalized* feed into the output

This commit is contained in:
Sam Ruby 2006-09-19 22:55:48 -04:00
parent b75ba9684e
commit 619719a585

View File

@ -65,8 +65,7 @@ def splice():
if not data.feed: continue
xdoc=minidom.parseString('''<planet:source xmlns:planet="%s"
xmlns="http://www.w3.org/2005/Atom"/>\n''' % planet.xmlns)
reconstitute.source(xdoc.documentElement, data.feed,
data.bozo, data.version)
reconstitute.source(xdoc.documentElement, data.feed, None, None)
feed.appendChild(xdoc.documentElement)
return doc