[Zope-Checkins] CVS: Zope2 - STDOM.py:1.3
Amos Latteier
amos@digiciool.com
Tue, 13 Mar 2001 15:05:01 -0500 (EST)
Update of /cvs-repository/Zope2/lib/python/StructuredText
In directory korak:/tmp/cvs-serv29896
Modified Files:
STDOM.py
Log Message:
Fixed a couple typos. This DOM really needs some tests. These typos should have been caught long ago.
--- Updated File STDOM.py in package Zope2 --
--- STDOM.py 2001/01/04 15:01:59 1.2
+++ STDOM.py 2001/03/13 20:05:01 1.3
@@ -178,7 +178,7 @@
if not children:
return None
- n=chidren[0]
+ n=children[0]
if type(n) is st:
n=TextNode(n)
@@ -554,7 +554,7 @@
return self.getNodeType()
def _get_NodeValue(self, type=type, st=type('')):
- return self.GetNodeValue(type,st)
+ return self.getNodeValue(type,st)
def _get_ParentNode(self):
return self.getParentNode()