Corrected misleading warning message (-t and -s flags were mixed up)

This commit is contained in:
mkesenheimer 2020-11-26 12:59:18 +01:00
parent 02a809d603
commit 37d02fc19c
No known key found for this signature in database
GPG Key ID: 15E203385E96D04E

View File

@ -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):