# HG changeset patch # User Kim Alvefur # Date 1487169034 -3600 # Node ID 1e1c18012048de57c735563c2c7fa7da7afe8c58 # Parent 217412da818f08eafcf5d47b0558579a06df8654 migrator: Fix missing word diff -r 217412da818f -r 1e1c18012048 tools/migration/prosody-migrator.lua --- a/tools/migration/prosody-migrator.lua Wed Feb 15 15:30:19 2017 +0100 +++ b/tools/migration/prosody-migrator.lua Wed Feb 15 15:30:34 2017 +0100 @@ -47,7 +47,7 @@ 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);