diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index 9036804cb..204327e13 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -175,7 +175,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: @@ -197,7 +197,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