Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions source/app/blueprints/rest/case/case_timeline_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,6 @@ def case_events_upload_csv(caseid):
'event_sync_iocs_assets') else False
event_in_summary = csv_options.get('event_in_summary') if csv_options.get('event_in_summary') else False
event_in_graph = csv_options.get('event_in_graph') if csv_options.get('event_in_graph') else True
event_source = csv_options.get('event_source') if csv_options.get('event_source') else ''

csv_data = list(csv.DictReader(csv_lines, delimiter=','))
missing_fields = []
Expand Down Expand Up @@ -934,7 +933,6 @@ def case_events_upload_csv(caseid):

row['event_in_summary'] = event_in_summary
row['event_in_graph'] = event_in_graph
row['event_source'] = event_source

csv_lines.append(row)
except Exception as e:
Expand Down
Loading