From 409c5c5bfb20ac06dc457b99f9e9cb6a6a576438 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Thu, 22 Feb 2018 11:22:31 -0800 Subject: [PATCH] fix syntax error --- certbot/account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot/account.py b/certbot/account.py index 5e935aaa9..4653ccc9d 100644 --- a/certbot/account.py +++ b/certbot/account.py @@ -224,7 +224,7 @@ class AccountFileStorage(interfaces.AccountStorage): with open(self._regr_path(account_dir_path), "w") as regr_file: regr = account.regr with_uri = RegistrationResourceWithNewAuthzrURI( - new_authzr_uri="foo.bar" + new_authzr_uri="foo.bar", body=regr.body, uri=regr.uri, terms_of_service=regr.terms_of_service)