Skip to content

Commit

Permalink
Merge pull request #34 from TheToddLuci0/33_allow_not_opening_reports
Browse files Browse the repository at this point in the history
Fix #33
  • Loading branch information
knavesec authored Jan 4, 2023
2 parents 94299af + 3e97ea4 commit 4a2c887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion max.py
Original file line number Diff line number Diff line change
Expand Up @@ -1408,7 +1408,7 @@ def write_html_report(self, filebase, filename):
webbrowser.open(os.path.join("file://" + os.getcwd(),
filebase, filename_report))
break
elif ((reponse == 'n') or (response == "no")):
elif ((response == 'n') or (response == "no")):
break
else:
print("[-] Please respond with y or n")
Expand Down

0 comments on commit 4a2c887

Please sign in to comment.