[Zope-Checkins] CVS: Zope/lib/python/StructuredText - STDOM.py:1.6

Chris McDonough chrism@zope.com
Fri, 7 Jun 2002 21:10:26 -0400


Update of /cvs-repository/Zope/lib/python/StructuredText
In directory cvs.zope.org:/tmp/cvs-serv15346

Modified Files:
	STDOM.py 
Log Message:
Dont croak if subelement is an honest to god text node in getElementsByTagName

=== Zope/lib/python/StructuredText/STDOM.py 1.5 => 1.6 ===
       nodeList = []
       for child in self.getChildren():
+         if not hasattr(child, 'getNodeType'): continue
          if (child.getNodeType()==ELEMENT_NODE and \
              child.getTagName()==tagname or tagname== '*'):