| @@ -458,7 +458,7 @@ class DOM: | |||||
| if ((child.localName == name or name is None) and | if ((child.localName == name or name is None) and | ||||
| (nsuri is None or nsmatch(child.namespaceURI, nsuri))): | (nsuri is None or nsmatch(child.namespaceURI, nsuri))): | ||||
| return child | return child | ||||
| if default is not ''.join: | |||||
| if default is not join: | |||||
| return default | return default | ||||
| raise KeyError(name) | raise KeyError(name) | ||||
| @@ -470,7 +470,7 @@ class DOM: | |||||
| if child.nodeType == ELEMENT_NODE: | if child.nodeType == ELEMENT_NODE: | ||||
| if attrget(child, 'id') == id: | if attrget(child, 'id') == id: | ||||
| return child | return child | ||||
| if default is not ''.join: | |||||
| if default is not join: | |||||
| return default | return default | ||||
| raise KeyError(name) | raise KeyError(name) | ||||
| @@ -532,7 +532,7 @@ class DOM: | |||||
| result = node._attrsNS.get((nsuri, name), None) | result = node._attrsNS.get((nsuri, name), None) | ||||
| if result is not None: | if result is not None: | ||||
| return result.value | return result.value | ||||
| if default is not ''.join: | |||||
| if default is not join: | |||||
| return default | return default | ||||
| return '' | return '' | ||||