diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-05-04 19:08:55 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-05-04 19:08:55 +0100 |
commit | 4366e348c57a16379ae7f2e47a5f71d8dd9fc5f3 (patch) | |
tree | 0e62ad66a42f4d6adc1a5d78bc5af8b51418528f /core/modulemanager.lua | |
parent | 1f45b979b1ce50e62c5e9057e686f7744ffd1695 (diff) | |
download | prosody-4366e348c57a16379ae7f2e47a5f71d8dd9fc5f3.tar.gz prosody-4366e348c57a16379ae7f2e47a5f71d8dd9fc5f3.zip |
modulemanager: No need for print()
Diffstat (limited to 'core/modulemanager.lua')
-rw-r--r-- | core/modulemanager.lua | 2 |
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; |