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 b957136 commit d20f194Copy full SHA for d20f194
splunklib/searchcommands/internals.py
@@ -595,7 +595,7 @@ def _write_record(self, record):
595
596
if fieldnames is None:
597
self.custom_fields |= set(record.keys())
598
- self._fieldnames = fieldnames = [*self.custom_fields]
+ self._fieldnames = fieldnames = list(self.custom_fields)
599
value_list = imap(lambda fn: (str(fn), str('__mv_') + str(fn)), fieldnames)
600
self._writerow(list(chain.from_iterable(value_list)))
601
0 commit comments