Browse Source

forgot again join conversion

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

+ 1
- 1
wstools/Utility.py View File

@@ -554,7 +554,7 @@ class DOM:
if nodetype == child.TEXT_NODE or \
nodetype == child.CDATA_SECTION_NODE:
result.append(child.nodeValue)
value = result.join('')
value = ''.join(result)
if preserve_ws is None:
value = value.strip()
return value


Loading…
Cancel
Save