From: sgunderson@bigfoot.com <> Date: Wed, 6 Sep 2006 14:45:48 +0000 (+0200) Subject: Make the Python version pass the passthru test... X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=45e891552925659588f499e2d9f4ac90fe3d7753;p=xml-template Make the Python version pass the passthru test... --- diff --git a/python/xmltemplate.py b/python/xmltemplate.py index e22d0f8..d10fc11 100644 --- a/python/xmltemplate.py +++ b/python/xmltemplate.py @@ -2,7 +2,7 @@ import xml.dom.minidom def process_file(filename, obj, clean = False): - doc = xml.dom.minidom.parse("../xml/simple.xml") + doc = xml.dom.minidom.parse(filename) process(doc, obj, clean) return doc