From 79d8ea618a60c288a4ac4d2995fdc35461fab456 Mon Sep 17 00:00:00 2001 From: randomuser Date: Thu, 29 Jul 2021 20:46:15 -0500 Subject: [PATCH] add help for -nx --- esgd.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/esgd.py b/esgd.py index e4d744c..6fe9374 100755 --- a/esgd.py +++ b/esgd.py @@ -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__":