From dace0aecfaee06af3c9e5cbfcc49ceebade3cb56 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Thu, 4 Feb 2016 16:23:39 -0800 Subject: [PATCH] I missed these --- letsencrypt/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index 8c33ddfd0..a4fa409c1 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -159,7 +159,7 @@ def _determine_account(config): acc = accounts[0] else: # no account registered yet if config.email is None and not config.register_unsafely_without_email: - config.email = display_ops.get_email() + config.namespace.email = display_ops.get_email() def _tos_cb(regr): if config.tos: @@ -181,7 +181,7 @@ def _determine_account(config): raise errors.Error( "Unable to register an account with ACME server") - config.account = acc.id + config.namespace.account = acc.id return acc, acme