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)