From d327c1c28fe91d9b666f65ae8ef7887cf1778dbc Mon Sep 17 00:00:00 2001 From: Jacob Hoffman-Andrews Date: Tue, 18 Jul 2017 12:47:10 -0700 Subject: [PATCH] Tweak non-root error message. (#4944) For most people, the right answer will be "run as root," so we should emphasize that over the "how to run as non-root" instructions. --- certbot/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot/util.py b/certbot/util.py index a95ef62b9..98424b496 100644 --- a/certbot/util.py +++ b/certbot/util.py @@ -48,7 +48,7 @@ ANSI_SGR_RESET = "\033[0m" PERM_ERR_FMT = os.linesep.join(( "The following error was encountered:", "{0}", - "If running as non-root, set --config-dir, " + "Either run as root, or set --config-dir, " "--work-dir, and --logs-dir to writeable paths."))