Browse Source

forgot join conversion

main
Julien Iguchi-Cartigny 10 years ago
parent
commit
8255518963
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      wstools/Utility.py

+ 3
- 3
wstools/Utility.py View File

@@ -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 ''




Loading…
Cancel
Save