Skip to content

Commit c1880d5

Browse files
committed
fix tab/space issues and python3 compat
1 parent 6d9c7c3 commit c1880d5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/defense/list_events_with_cmdline_csv.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ def main():
5656
else:
5757
events = list(cb.select(Event))
5858

59-
# print the column headers
60-
print "Event Time|Event ID|Create Time|Event Type|Description|Command Line"
61-
59+
# print the column headers
60+
print("Event Time|Event ID|Create Time|Event Type|Description|Command Line")
61+
6262
for event in events:
6363
# convert event and create times
6464
event_time = str(convert_time(event.createTime))

0 commit comments

Comments
 (0)