Merge pull request #250 from MKesenheimer/master

Corrected misleading warning message (-t and -s flags were mixed up)
This commit is contained in:
Xavi Mendez 2020-11-28 20:59:28 +01:00 committed by GitHub
commit 1b695ee9a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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