[Lxml-checkins] r44757 - lxml/trunk/src/lxml
scoder at codespeak.net
scoder at codespeak.net
Thu Jul 5 21:52:14 CEST 2007
Author: scoder
Date: Thu Jul 5 21:52:14 2007
New Revision: 44757
Modified:
lxml/trunk/src/lxml/objectify.pyx
Log:
small fix
Modified: lxml/trunk/src/lxml/objectify.pyx
==============================================================================
--- lxml/trunk/src/lxml/objectify.pyx (original)
+++ lxml/trunk/src/lxml/objectify.pyx Thu Jul 5 21:52:14 2007
@@ -1054,7 +1054,7 @@
result = python.PyDict_GetItem(_PYTYPE_DICT, name)
if result is NULL:
return None
- return (<object>result)._stringify
+ return (<PyType>result)._stringify
return <object>result
def __contains__(self, type):
More information about the lxml-checkins
mailing list