s/Let's Encrypt/Certbot

This commit is contained in:
Brad Warren
2016-04-13 16:13:50 -07:00
parent 3961b70deb
commit 1b565ef74a
23 changed files with 47 additions and 48 deletions
+3 -3
View File
@@ -81,15 +81,15 @@ class Account(object): # pylint: disable=too-few-public-methods
def report_new_account(acc, config):
"""Informs the user about their new Let's Encrypt account."""
"""Informs the user about their new ACME account."""
reporter = zope.component.queryUtility(interfaces.IReporter)
if reporter is None:
return
reporter.add_message(
"Your account credentials have been saved in your Let's Encrypt "
"Your account credentials have been saved in your Certbot "
"configuration directory at {0}. You should make a secure backup "
"of this folder now. This configuration directory will also "
"contain certificates and private keys obtained by Let's Encrypt "
"contain certificates and private keys obtained by Certbot "
"so making regular backups of this folder is ideal.".format(
config.config_dir),
reporter.MEDIUM_PRIORITY)