Skip to content

Commit 49d5117

Browse files
committed
fixed the issue with corrupted first line in EventData section
1 parent df24946 commit 49d5117

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/evtx_dump_json.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ def main():
5555
else:
5656
data_value=event_data_subvalue
5757

58-
# Add information to the JSON object for this specific log
59-
json_subline.update({data_name:data_value})
60-
58+
# Add information to the JSON object for this specific log
59+
json_subline.update({data_name: data_value})
60+
6161
# Print the JSON object for the specific log if not requested to output to file
6262
if not args.output:
6363
print(json_subline)

0 commit comments

Comments
 (0)