Browse Source

Revert "forgot again join conversion"

This reverts commit 6c37a6fef3.
main
Julien Iguchi-Cartigny 10 years ago
parent
commit
ff0b258f22
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 = ''.join(result)
value = result.join('')
if preserve_ws is None:
value = value.strip()
return value


Loading…
Cancel
Save