2005-01-16 | paulb | raw files shortlog changelog graph | [project @ 2005-01-16 01:15:01 by paulb] Fixed Node.createElement. | |
libxml2dom/__init__.py (file) |
1.1 --- a/libxml2dom/__init__.py Fri Jan 14 15:39:03 2005 +0000 1.2 +++ b/libxml2dom/__init__.py Sun Jan 16 01:15:01 2005 +0000 1.3 @@ -269,7 +269,7 @@ 1.4 # NOTE: Need to convert from Unicode. 1.5 name = from_unicode(name) 1.6 1.7 - _node = libxml2.newNode(localName) 1.8 + _node = libxml2.newNode(name) 1.9 return Node(_node) 1.10 1.11 def createAttributeNS(self, ns, name):