I found strange behavior, when using namespaces in XML.
I'm trying to change <tps:style type="italic">
into <tps:c type="italic">
.
I found that tag.name = "tps:c"
creates <tps:tps:c type="italic">.
I worked around it by using tag.name = "c"
and it set it to <tps:c type="italic">
.