add help for -nx

This commit is contained in:
randomuser 2021-07-29 20:46:15 -05:00
parent a0815b341a
commit 79d8ea618a
1 changed files with 2 additions and 1 deletions

View File

@ -229,7 +229,8 @@ def parseArgs():
parse.add_argument("-ndx", "--direxc",
action="extend", nargs="*",
help="make directory-wide exception for file execution")
parse.add_argument("-nx", "--nocgi", action="store_true")
parse.add_argument("-nx", "--nocgi", action="store_true",
help="disable execution of cgi scripts")
return parse.parse_args()
if __name__ == "__main__":