From 498a5816262ab12686ed2bc4449135affc3f0226 Mon Sep 17 00:00:00 2001 From: Alex Kelly Date: Fri, 1 Oct 2021 12:29:03 -0400 Subject: [PATCH] feat: add text output for cert validity in addition to color --- checkcert/checkcert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checkcert/checkcert.py b/checkcert/checkcert.py index 23ff0f2..da58eeb 100644 --- a/checkcert/checkcert.py +++ b/checkcert/checkcert.py @@ -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):