Changeset

7895:1e1c18012048

migrator: Fix missing word
author Kim Alvefur <zash@zash.se>
date Wed, 15 Feb 2017 15:30:34 +0100
parents 7894:217412da818f
children 7896:1a2674123c1c
files tools/migration/prosody-migrator.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);