From 7aa2f4b5f6c56ae494a97b7fb48906c8190c291d Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Tue, 9 Feb 2016 18:34:44 -0800 Subject: [PATCH] Remove stay .namespace --- letsencrypt/cli.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index 6655c33dd..6f0b45888 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -755,9 +755,9 @@ def _set_by_cli(var): plugins, reconstructed_args, detect_defaults=True) # propagate plugin requests: eg --standalone modifies config.authenticator auth, inst = cli_plugin_requests(detector) - detector.namespace.authenticator = auth if auth else "" - detector.namespace.installer = inst if inst else "" - logger.debug("Default Detector is %r", detector.namespace) + detector.authenticator = auth if auth else "" + detector.installer = inst if inst else "" + logger.debug("Default Detector is %r", detector) try: # Is detector.var something that isn't false?