fix: default valid output text to "false", override with "--valid"
This commit is contained in:
parent
978b42ae57
commit
d3ce964ded
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ def get_host_list_tuple(hosts: list) -> List[Tuple[str, int]]:
|
||||||
help="Read a list of hosts to check from a file",
|
help="Read a list of hosts to check from a file",
|
||||||
)
|
)
|
||||||
@click.option(
|
@click.option(
|
||||||
"--valid/--no-valid", default=True, help="Show True/False for cert validity"
|
"--valid/--no-valid", default=False, help="Show True/False for cert validity"
|
||||||
)
|
)
|
||||||
@click.option(
|
@click.option(
|
||||||
"--san-only",
|
"--san-only",
|
||||||
|
|
Loading…
Reference in a new issue