diff --git a/cert_deets.py b/cert_deets.py index 0112087..0a96e95 100644 --- a/cert_deets.py +++ b/cert_deets.py @@ -139,7 +139,7 @@ if __name__ == "__main__": table = [ ["Common name", cert.subject.rfc4514_string()], - ["SANs", tabulate(sangroups, tablefmt="plain")], + [f"SANs ({len(sans)})", tabulate(sangroups, tablefmt="plain")], ["Valid from", cert.not_valid_before_utc], ["Valid to", cert.not_valid_after_utc], ["Issuer", cert.issuer.rfc4514_string()],