Browse Source

Revert "fixing join as function parameter"

This reverts commit ae5a5044fb.
main
Julien Iguchi-Cartigny 10 years ago
parent
commit
d2ba942c40
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      wstools/Utility.py

+ 1
- 1
wstools/Utility.py View File

@@ -448,7 +448,7 @@ class DOM:
return node.localName == name and \
(nsuri is None or self.nsUriMatch(node.namespaceURI, nsuri))

def getElement(self, node, name, nsuri=None, default=''.join):
def getElement(self, node, name, nsuri=None, default=join):
"""Return the first child of node with a matching name and
namespace uri, or the default if one is provided."""
nsmatch = self.nsUriMatch


Loading…
Cancel
Save