Skip to content

Commit 6d2a46d

Browse files
authored
bugfix: Fix ts error
1 parent 2ac05a5 commit 6d2a46d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zeek-term.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def process_text_log_line(log_type, parts):
8888

8989
record = dict(zip(header, parts))
9090

91-
if not args.no_ts_conversation and 'ts' in record:
91+
if not args.no_ts_conversion and 'ts' in record:
9292
record['ts'] = convert_ts(record['ts'])
9393

9494
if log_type == 'files' and 'uid' in record:

0 commit comments

Comments
 (0)