From 45e891552925659588f499e2d9f4ac90fe3d7753 Mon Sep 17 00:00:00 2001 From: "sgunderson@bigfoot.com" <> Date: Wed, 6 Sep 2006 16:45:48 +0200 Subject: [PATCH] Make the Python version pass the passthru test... --- python/xmltemplate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2