aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-02-15 15:30:34 +0100
committerKim Alvefur <zash@zash.se>2017-02-15 15:30:34 +0100
commitfc7dadb6a71c4294edfd8e0844f929f757927a5e (patch)
tree31a69fee2d6f04d171b49c49dd57d7592d167ee7 /tools
parentmigrator: Fix argument parsing (diff)
downloadprosody-fc7dadb6a71c4294edfd8e0844f929f757927a5e.tar.xz
prosody-fc7dadb6a71c4294edfd8e0844f929f757927a5e.zip
migrator: Fix missing word
Diffstat (limited to 'tools')
-rw-r--r--tools/migration/prosody-migrator.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/migration/prosody-migrator.lua b/tools/migration/prosody-migrator.lua
index 7ceff7217..6cff9f671 100644
--- a/tools/migration/prosody-migrator.lua
+++ b/tools/migration/prosody-migrator.lua
@@ -47,7 +47,7 @@ config = {};
local config_env = setmetatable({}, { __index = function(t, k) return function(tbl) config[k] = tbl; end; end });
local config_chunk, err = envloadfile(config_file, config_env);
if not config_chunk then
- print("There was an error loading the config file, check the file exists");
+ print("There was an error loading the config file, check that the file exists");
print("and that the syntax is correct:");
print("", err);
os.exit(1);