Skip to content

Commit

Permalink
fix: txt output bug (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocervell authored Apr 9, 2024
1 parent b391fe8 commit fca301d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion secator/exporters/txt.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit fca301d

Please sign in to comment.