]> git.sesse.net Git - xml-template/blobdiff - python/attribute.py
Fix a potential bug in the C++0x cleaning.
[xml-template] / python / attribute.py
index 8a5b95bd231e08bebf4e185a5512ea153c54c38c..19d60769a24776c137b55fe4111af36f494edc2a 100644 (file)
@@ -2,12 +2,12 @@
 import xmltemplate
 
 doc = xmltemplate.process_file("../xml/clone.xml", {
-       'color': 'blue',
+       '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()