diff options
author | Kim Alvefur <zash@zash.se> | 2017-02-15 15:30:34 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-02-15 15:30:34 +0100 |
commit | 49ae1e60fdc5f1a31b4c1ae5027a3fec76095a90 (patch) | |
tree | 31a69fee2d6f04d171b49c49dd57d7592d167ee7 | |
parent | 374f61a26b937601159ac2422a90ff9ae36139bc (diff) | |
download | prosody-49ae1e60fdc5f1a31b4c1ae5027a3fec76095a90.tar.gz prosody-49ae1e60fdc5f1a31b4c1ae5027a3fec76095a90.zip |
migrator: Fix missing word
-rw-r--r-- | tools/migration/prosody-migrator.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/migration/prosody-migrator.lua b/tools/migration/prosody-migrator.lua index 7ceff721..6cff9f67 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); |