diff --git a/secator/exporters/txt.py b/secator/exporters/txt.py index 3286a876..2f6a6434 100644 --- a/secator/exporters/txt.py +++ b/secator/exporters/txt.py @@ -11,7 +11,7 @@ def send(self): items = [str(i) for i in items] if not items: continue - txt_path = f'{self.report.output_folder}/report.txt' + txt_path = f'{self.report.output_folder}/report_{output_type}.txt' with open(txt_path, 'w') as f: f.write('\n'.join(items)) txt_paths.append(txt_path)