From 6460a3b50ef3b14f5ad2d2fc98a0ae683e131c6f Mon Sep 17 00:00:00 2001 From: Peter Eckersley Date: Mon, 19 Oct 2015 19:27:36 -0700 Subject: [PATCH] Dial back the "authenticator doesn't make sense in install mode" message Since it was breaking integration tests --- letsencrypt/cli.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index 6af6a45c6..dd0623757 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -365,8 +365,7 @@ def choose_configurator_plugins(args, config, plugins, verb): if verb == "install": need_inst = True if args.authenticator: - msg = "Specifying an authenticator doesn't make sense in install mode" - raise PluginSelectionError, msg + logger.warn("Specifying an authenticator doesn't make sense in install mode") # Which plugins did the user request? req_inst = req_auth = args.configurator