From 48014319ae418a21b07136e107a0617652158bd3 Mon Sep 17 00:00:00 2001 From: "sgunderson@bigfoot.com" <> Date: Wed, 6 Sep 2006 17:58:26 +0200 Subject: [PATCH] Fix even more silly errors in attribute.py. attribute.py passes! --- python/attribute.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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() -- 2.39.2