From a481036dc9d7e53c85b6979ddbad4726a1ce725e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Metin?= Date: Fri, 1 Jul 2005 13:30:44 +0000 Subject: [PATCH] typo --- pisi/xmlfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pisi/xmlfile.py b/pisi/xmlfile.py index ad906eda..8f159ca4 100644 --- a/pisi/xmlfile.py +++ b/pisi/xmlfile.py @@ -64,7 +64,7 @@ class XmlFile(object): def getNodeText(self, tagPath): """returns the text of *first* matching node for given tag path.""" - node = self.getNode(tagpath) + node = self.getNode(tagPath) if not node: return None return getNodeText(node)