From 151568eab1b85ca378508cbb09d5f25361879f5c Mon Sep 17 00:00:00 2001 From: Olivier Cervello Date: Tue, 9 Apr 2024 09:58:45 -0400 Subject: [PATCH] update --- secator/exporters/txt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)