Changeset

7893:432f721b0fdf

migrator: Unexpand whitespace
author Kim Alvefur <zash@zash.se>
date Wed, 15 Feb 2017 15:29:37 +0100
parents 7891:01d2a2af3146
children 7894:217412da818f
files tools/migration/prosody-migrator.lua
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/tools/migration/prosody-migrator.lua	Tue Feb 14 18:51:41 2017 +0100
+++ b/tools/migration/prosody-migrator.lua	Wed Feb 15 15:29:37 2017 +0100
@@ -5,11 +5,11 @@
 
 -- Substitute ~ with path to home directory in paths
 if CFG_CONFIGDIR then
-        CFG_CONFIGDIR = CFG_CONFIGDIR:gsub("^~", os.getenv("HOME"));
+	CFG_CONFIGDIR = CFG_CONFIGDIR:gsub("^~", os.getenv("HOME"));
 end
 
 if CFG_SOURCEDIR then
-        CFG_SOURCEDIR = CFG_SOURCEDIR:gsub("^~", os.getenv("HOME"));
+	CFG_SOURCEDIR = CFG_SOURCEDIR:gsub("^~", os.getenv("HOME"));
 end
 
 local default_config = (CFG_CONFIGDIR or ".").."/migrator.cfg.lua";