aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-05-04 19:08:55 +0100
committerMatthew Wild <mwild1@gmail.com>2009-05-04 19:08:55 +0100
commit4366e348c57a16379ae7f2e47a5f71d8dd9fc5f3 (patch)
tree0e62ad66a42f4d6adc1a5d78bc5af8b51418528f
parent1f45b979b1ce50e62c5e9057e686f7744ffd1695 (diff)
downloadprosody-4366e348c57a16379ae7f2e47a5f71d8dd9fc5f3.tar.gz
prosody-4366e348c57a16379ae7f2e47a5f71d8dd9fc5f3.zip
modulemanager: No need for print()
-rw-r--r--core/modulemanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua
index 2cba50ac..6dbc8c53 100644
--- a/core/modulemanager.lua
+++ b/core/modulemanager.lua
@@ -28,7 +28,7 @@ local type = type;
local next = next;
local rawget = rawget;
-local tostring, print = tostring, print;
+local tostring = tostring;
-- We need this to let modules access the real global namespace
local _G = _G;