Skip to content

Commit

Permalink
Merge pull request #1324 from huyphan/patch-1
Browse files Browse the repository at this point in the history
Fix bug of wrong file extension
  • Loading branch information
shelld3v authored Sep 19, 2023
2 parents cbfa2d9 + 22fe3da commit 288baef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/controller/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ def get_output_extension(self):
if options["output_format"] in ("plain", "simple"):
return "txt"

return {options["output_format"]}
return options["output_format"]

def setup_reports(self):
"""Create report file"""
Expand Down

0 comments on commit 288baef

Please sign in to comment.