Skip to content

Commit 1b695ee

Browse files
authored
Merge pull request xmendez#250 from MKesenheimer/master
Corrected misleading warning message (-t and -s flags were mixed up)
2 parents 02a809d + 37d02fc commit 1b695ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wfuzz/ui/console/clparser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ def _check_options(self, optsd):
346346

347347
if "-s" in list(optsd.keys()) and "-t" in list(optsd.keys()):
348348
warnings.warn(
349-
"When using delayed requests concurrent requests are limited to 1, therefore the -s switch will be ignored."
349+
"When using delayed requests concurrent requests are limited to 1, therefore the -t switch will be ignored."
350350
)
351351

352352
def _parse_filters(self, optsd, filter_params):

0 commit comments

Comments
 (0)