You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just realized that there are problems if e.g. entries of Win32_NTLogEvent contain newlines. Then, the output is not vaild CSV (the CSV reader will still accept it, but the output is wrong).
In my code, I was attempting to "fix" these lines by making sure that they contain the right number of delimiters, but that's obviously not nice and there are cases where this does not work.
regards,
totycro
The text was updated successfully, but these errors were encountered:
#5
I had same problem. If you add that line to 'wrapper.py', it can be solved.
It's ok for me. section = section.replace('\r\n', '\\r\\n')
for section in sections:
# remove the first line because it has the query class
section = "\n".join(section.split("\n")[1:])
section = section.replace('\r\n', '\\r\\n')
strio = StringIO(section)
moredata = list(csv.DictReader(strio, delimiter=delimiter))
items.extend(moredata)
Hi,
I just realized that there are problems if e.g. entries of Win32_NTLogEvent contain newlines. Then, the output is not vaild CSV (the CSV reader will still accept it, but the output is wrong).
In my code, I was attempting to "fix" these lines by making sure that they contain the right number of delimiters, but that's obviously not nice and there are cases where this does not work.
regards,
totycro
The text was updated successfully, but these errors were encountered: