Software / code / prosody
Changeset
1105:965a55db3732
modulemanager: No need for print()
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Mon, 04 May 2009 19:08:55 +0100 |
| parents | 1104:e9c1650054c4 |
| children | 1106:b51a65066595 |
| files | core/modulemanager.lua |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/core/modulemanager.lua Mon May 04 19:06:31 2009 +0100 +++ b/core/modulemanager.lua Mon May 04 19:08:55 2009 +0100 @@ -28,7 +28,7 @@ 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;