We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f046023 commit 3844e01Copy full SHA for 3844e01
splunklib/results.py
@@ -246,9 +246,7 @@ def _parse_results(self, stream):
246
elem.clear()
247
248
elif elem.tag in ('text', 'v') and event == 'end':
249
- text = ""
250
- for text_chunk in elem.itertext():
251
- text += text_chunk
+ text = "".join(elem.itertext())
252
values.append(text.encode('utf8'))
253
254
0 commit comments