From 619719a58586932a68fe276ef577aadb8679d128 Mon Sep 17 00:00:00 2001 From: Sam Ruby Date: Tue, 19 Sep 2006 22:55:48 -0400 Subject: [PATCH] Don't insert bozo and format info from the *normalized* feed into the output --- planet/splice.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/planet/splice.py b/planet/splice.py index 36caa59..29046c5 100644 --- a/planet/splice.py +++ b/planet/splice.py @@ -65,8 +65,7 @@ def splice(): if not data.feed: continue xdoc=minidom.parseString('''\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