From cac39c7504f858c8f4aa022aef7e35e6d87df2b0 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Fri, 13 Nov 2015 14:02:34 -0800 Subject: [PATCH] fixes #1490 --- letsencrypt/cli.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index 30ac81092..9c367d41e 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -970,7 +970,8 @@ def _paths_parser(helpful): # revoke --key-path reads a file, install --key-path takes a string add(section, "--key-path", required=(verb == "install"), type=((verb == "revoke" and read_file) or os.path.abspath), - help="Path to private key for cert creation or revocation (if account key is missing)") + help="Path to private key for cert installation " + "or revocation (if account key is missing)") default_cp = None if verb == "certonly":