Comparison

tools/migration/prosody-migrator.lua @ 5776:bd0ff8ae98a8

Remove all trailing whitespace
author Florian Zeitz <florob@babelmonkeys.de>
date Fri, 09 Aug 2013 17:48:21 +0200
parent 5021:85b2689dbcfe
child 7880:1d998891c967
comparison
equal deleted inserted replaced
5775:a6c2b8933507 5776:bd0ff8ae98a8
113 print("", store); 113 print("", store);
114 end 114 end
115 print(""); 115 print("");
116 os.exit(1); 116 os.exit(1);
117 end 117 end
118 118
119 local itype = config[from_store].type; 119 local itype = config[from_store].type;
120 local otype = config[to_store].type; 120 local otype = config[to_store].type;
121 local reader = require("migrator."..itype).reader(config[from_store]); 121 local reader = require("migrator."..itype).reader(config[from_store]);
122 local writer = require("migrator."..otype).writer(config[to_store]); 122 local writer = require("migrator."..otype).writer(config[to_store]);
123 123