feat: add text output for cert validity in addition to color

This commit is contained in:
Alex Kelly 2021-10-01 12:29:03 -04:00
parent ca17b3a871
commit 498a581626

View file

@ -94,7 +94,7 @@ def get_issuer(cert):
help="Read a list of hosts to check from a file",
)
@click.option(
"--valid/--no-valid", default=True, help="Show the text field for cert validity"
"--valid/--no-valid", default=True, help="Show True/False for cert validity"
)
@click.argument("hosts", nargs=-1)
def main(san, dump, color, filename, valid, hosts):