From: sgunderson@bigfoot.com <> Date: Wed, 6 Sep 2006 15:58:26 +0000 (+0200) Subject: Fix even more silly errors in attribute.py. attribute.py passes! X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=48014319ae418a21b07136e107a0617652158bd3;p=xml-template Fix even more silly errors in attribute.py. attribute.py passes! --- diff --git a/python/attribute.py b/python/attribute.py index 61014a7..19d6076 100644 --- a/python/attribute.py +++ b/python/attribute.py @@ -4,10 +4,10 @@ import xmltemplate doc = xmltemplate.process_file("../xml/clone.xml", { 'color': 'red', '#things': [ - { "li": "Raindrops on roses", "li/class": "even" }, - { "li": "Whiskers on kittens", "li/class": "odd" }, - { "li": "Bright copper kettles", "li/class": "even" }, - { "li": "Warm, woolen mittens", "li/class": "odd" } + { "li": "Raindrops on roses", "li/class": "odd" }, + { "li": "Whiskers on kittens", "li/class": "even" }, + { "li": "Bright copper kettles", "li/class": "odd" }, + { "li": "Warm, woolen mittens", "li/class": "even" } ] }) print doc.toxml()