Skip to content

Commit ede0da2

Browse files
committed
fix(info): refrain from displaying account email informaion
The email information was removed from the get registration response as the email server was discontinued by LetsEncrypt. Fixes: #142
1 parent d80ae4c commit ede0da2

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

automatoes/info.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,6 @@ def info(server, account, paths):
3636
try:
3737
print("Requesting account data...\n")
3838
response = acme_v2.get_registration()
39-
print(" Account contacts:")
40-
for contact in response['contact']:
41-
print(" {}".format(contact[7:]))
4239
print("\n Account uri is located at %s." % account.uri)
4340
print(" Account id is %s.\n" % account.uri.split("/")[-1])
4441
if "createdAt" in response:

0 commit comments

Comments
 (0)