aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2025-02-15 16:29:32 +0000
committerMatthew Wild <mwild1@gmail.com>2025-02-15 16:29:32 +0000
commit35e48b2bac67c93957a0a06087f767184a163d2b (patch)
treebabbf4cfedfa9bd6f10903a1d796b256abf0e226
parent346f58c9d9fe2e876a140cce1763c585a6f1bdb0 (diff)
downloadprosody-35e48b2bac67c93957a0a06087f767184a163d2b.tar.gz
prosody-35e48b2bac67c93957a0a06087f767184a163d2b.zip
prosodyctl: check: Fix indentation in warning message
-rw-r--r--util/prosodyctl/check.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/prosodyctl/check.lua b/util/prosodyctl/check.lua
index b5e3fbe3..6c563498 100644
--- a/util/prosodyctl/check.lua
+++ b/util/prosodyctl/check.lua
@@ -796,8 +796,8 @@ local function check(arg)
if #invalid_hosts > 0 or #alabel_hosts > 0 then
print("");
- print("WARNING: Changing the name of a VirtualHost in Prosody's config file");
- print(" WILL NOT migrate any existing data (user accounts, etc.) to the new name.");
+ print(" WARNING: Changing the name of a VirtualHost in Prosody's config file");
+ print(" WILL NOT migrate any existing data (user accounts, etc.) to the new name.");
ok = false;
end
end