Skip to content

Commit

Permalink
Merge pull request xmendez#250 from MKesenheimer/master
Browse files Browse the repository at this point in the history
Corrected misleading warning message (-t and -s flags were mixed up)
  • Loading branch information
xmendez committed Nov 28, 2020
2 parents 02a809d + 37d02fc commit 1b695ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wfuzz/ui/console/clparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ def _check_options(self, optsd):

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):
Expand Down

0 comments on commit 1b695ee

Please sign in to comment.