From 7d57e3104a2d7e514ae19c99d2a41094f3bfc5eb Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Mon, 27 Mar 2017 12:20:51 -0700 Subject: [PATCH] Ensure --fulchain-path gets put under paths in --help all --- certbot/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot/cli.py b/certbot/cli.py index 5b8711da6..0faf4a7c6 100644 --- a/certbot/cli.py +++ b/certbot/cli.py @@ -1155,7 +1155,7 @@ def _paths_parser(helpful): default_cp = None if verb == "certonly": default_cp = flag_default("auth_chain_path") - add(["install", "paths"], "--fullchain-path", default=default_cp, type=os.path.abspath, + add(["paths", "install"], "--fullchain-path", default=default_cp, type=os.path.abspath, help="Accompanying path to a full certificate chain (cert plus chain).") add("paths", "--chain-path", default=default_cp, type=os.path.abspath, help="Accompanying path to a certificate chain.")