From d3ce964ded901778af2cb146655dbcc1fbef1044 Mon Sep 17 00:00:00 2001 From: Alex Kelly Date: Mon, 4 Oct 2021 13:59:55 -0400 Subject: [PATCH] fix: default valid output text to "false", override with "--valid" --- checkcert/checkcert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/checkcert/checkcert.py b/checkcert/checkcert.py index 859c584..bf50bd3 100644 --- a/checkcert/checkcert.py +++ b/checkcert/checkcert.py @@ -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", ) @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( "--san-only",