From 1a79716583e8315485893eb8546d86b43a7a14c8 Mon Sep 17 00:00:00 2001 From: Alex Zorin Date: Mon, 22 Feb 2021 10:30:32 +1100 Subject: [PATCH] s/Restarting/Reloading/ when notifying the user --- certbot/certbot/_internal/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot/certbot/_internal/main.py b/certbot/certbot/_internal/main.py index 1f6efc387..b940c120b 100644 --- a/certbot/certbot/_internal/main.py +++ b/certbot/certbot/_internal/main.py @@ -1236,7 +1236,7 @@ def renew_cert(config, plugins, lineage): if installer and not config.dry_run: # In case of a renewal, reload server to pick up new certificate. updater.run_renewal_deployer(config, renewed_lineage, installer) - display_util.notify(f"Restarting {config.installer} server after certificate renewal") + display_util.notify(f"Reloading {config.installer} server after certificate renewal") installer.restart()