This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
wstools-py3
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
forgot again join conversion
main
Julien Iguchi-Cartigny
10 years ago
parent
8255518963
commit
6c37a6fef3
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
Write
Preview
Loading…
Cancel
Save