From e384a1fe2857e53abfabbe03175ed52b7af61575 Mon Sep 17 00:00:00 2001 From: Peter Eckersley Date: Mon, 19 Oct 2015 19:35:53 -0700 Subject: [PATCH] Catch some excessive policing of installers --- letsencrypt/cli.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index fb564c630..f0e1d3a4d 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -464,9 +464,6 @@ def install(args, config, plugins): except PluginSelectionError, e: return e.message - if args.authenticator: - return "Specifying an authenticator doesn't make sense in install mode!" - domains = _find_domains(args, installer) le_client = _init_le_client( args, config, authenticator=None, installer=installer)