From e742cfaa21176f1f5a3e43c8022b9c899bc5c205 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Thu, 25 Feb 2021 13:39:55 -0800 Subject: [PATCH] dont set required to False (#8689) --- certbot/certbot/_internal/cli/paths_parser.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/certbot/certbot/_internal/cli/paths_parser.py b/certbot/certbot/_internal/cli/paths_parser.py index 04b3725b9..43ee41c88 100644 --- a/certbot/certbot/_internal/cli/paths_parser.py +++ b/certbot/certbot/_internal/cli/paths_parser.py @@ -20,8 +20,6 @@ def _paths_parser(helpful): } if verb == "certonly": cpkwargs["default"] = flag_default("auth_cert_path") - elif verb == "revoke": - cpkwargs["required"] = False add(["paths", "install", "revoke", "certonly", "manage"], "--cert-path", **cpkwargs) section = "paths"