From 37d02fc19cf084b380db338df2b9d50035b48d48 Mon Sep 17 00:00:00 2001 From: mkesenheimer Date: Thu, 26 Nov 2020 12:59:18 +0100 Subject: [PATCH] Corrected misleading warning message (-t and -s flags were mixed up) --- src/wfuzz/ui/console/clparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wfuzz/ui/console/clparser.py b/src/wfuzz/ui/console/clparser.py index 392d07c..8e09d2b 100644 --- a/src/wfuzz/ui/console/clparser.py +++ b/src/wfuzz/ui/console/clparser.py @@ -346,7 +346,7 @@ class CLParser: if "-s" in list(optsd.keys()) and "-t" in list(optsd.keys()): warnings.warn( - "When using delayed requests concurrent requests are limited to 1, therefore the -s switch will be ignored." + "When using delayed requests concurrent requests are limited to 1, therefore the -t switch will be ignored." ) def _parse_filters(self, optsd, filter_params):