[Lxml-checkins] r46175 - lxml/branch/lxml-1.3/src/lxml
scoder at codespeak.net
scoder at codespeak.net
Wed Aug 29 22:30:29 CEST 2007
Author: scoder
Date: Wed Aug 29 22:30:28 2007
New Revision: 46175
Modified:
lxml/branch/lxml-1.3/src/lxml/objectify.pyx
Log:
small fix after last merge
Modified: lxml/branch/lxml-1.3/src/lxml/objectify.pyx
==============================================================================
--- lxml/branch/lxml-1.3/src/lxml/objectify.pyx (original)
+++ lxml/branch/lxml-1.3/src/lxml/objectify.pyx Wed Aug 29 22:30:28 2007
@@ -1651,7 +1651,7 @@
typemap[__builtin__.float] = __add_text
typemap[__builtin__.bool] = __add_text
- _ElementMaker.__init__(self, typemap, objectify_parser.makeelement)
+ _ElementMaker.__init__(self, typemap, makeelement=objectify_parser.makeelement)
def __add_text(_Element elem not None, text):
cdef tree.xmlNode* c_child
More information about the lxml-checkins
mailing list