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.
This commit is contained in:
Jacob Hoffman-Andrews 2017-07-18 12:47:10 -07:00 committed by Brad Warren
parent 7d0e4d7bad
commit d327c1c28f

View file

@ -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."))