aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-01-24 21:48:45 +0100
committerKim Alvefur <zash@zash.se>2013-01-24 21:48:45 +0100
commitf766f157e715eb12d4c5a460127681c80331feb9 (patch)
tree08470da9891a9938ba9de957af41eec268bbe8b2 /tools
parent6132cbab483a3521b4efddf87862ddc68f7f9784 (diff)
downloadprosody-f766f157e715eb12d4c5a460127681c80331feb9.tar.gz
prosody-f766f157e715eb12d4c5a460127681c80331feb9.zip
ejabberd2prosody.lua: Replace util.logger with a dummy before requiring util.serialization
Diffstat (limited to 'tools')
-rwxr-xr-xtools/ejabberd2prosody.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ejabberd2prosody.lua b/tools/ejabberd2prosody.lua
index 656f0824..ee9e7821 100755
--- a/tools/ejabberd2prosody.lua
+++ b/tools/ejabberd2prosody.lua
@@ -19,9 +19,9 @@ local erlparse = require "erlparse";
prosody = {};
+package.loaded["util.logger"] = {init = function() return function() end; end}
local serialize = require "util.serialization".serialize;
local st = require "util.stanza";
-package.loaded["util.logger"] = {init = function() return function() end; end}
local dm = require "util.datamanager"
dm.set_data_path("data");