Skip to content
Snippets Groups Projects
Commit fc6acff1 authored by Rajmund Hruška's avatar Rajmund Hruška
Browse files

Fix: Store the name of an abuse group as a string.

parent d6ba8ed2
No related branches found
No related tags found
No related merge requests found
......@@ -550,7 +550,7 @@ class MentatReporterScript(mentat.script.fetcher.FetcherScript):
tmphlp['report_count'] += 1
if 'extra_id' in severity_stats and severity_stats['extra_id']:
tmphlp['extra_ids'].extend(severity_stats['extra_id'])
tmphlp['abuse_groups'].extend(abuse_group)
tmphlp['abuse_groups'].append(abuse_group)
tmphlp['report_count'] += len(severity_stats['extra_id'])
if 'mail_to' in severity_stats and severity_stats['mail_to']:
tmphlp['mails_to'].extend(severity_stats['mail_to'])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment