# HG changeset patch # User paulb # Date 1128184068 0 # Node ID 452b736635db730c400266304c33b8071fb14050 # Parent 18350128c4570221cd8ca49f0e68be78d8f69a46 [project @ 2005-10-01 16:27:48 by paulb] Minor change from tuple to list. diff -r 18350128c457 -r 452b736635db examples/Common/Candidate/__init__.py --- a/examples/Common/Candidate/__init__.py Sat Oct 01 16:27:23 2005 +0000 +++ b/examples/Common/Candidate/__init__.py Sat Oct 01 16:27:48 2005 +0000 @@ -21,7 +21,7 @@ resource_dir = os.path.join(os.path.split(__file__)[0], "Resources") encoding = "utf-8" template_resources = { - "candidate" : ("candidate_template.xhtml", "candidate_output.xsl") + "candidate" : ["candidate_template.xhtml", "candidate_output.xsl"] } transform_resources = { "init" : ["candidate_init.xsl"]