# HG changeset patch
# User Matthew Wild <mwild1@gmail.com>
# Date 1241460535 -3600
# Node ID 965a55db3732c017b18623357ee3a99714634978
# Parent  e9c1650054c440909b24e81612e21304bb4e9fc8
modulemanager: No need for print()

diff -r e9c1650054c4 -r 965a55db3732 core/modulemanager.lua
--- 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;