# HG changeset patch # User Matthew Wild # Date 1245704074 -3600 # Node ID 9132f16666e4a5f5cb6869d16b7868bf9022f7f4 # Parent 8999dd4253f9bf74f1e2346c8c9e44d04a5e963c modulemanager: Fix copy/paste error, should be name instead of module_name diff -r 8999dd4253f9 -r 9132f16666e4 core/modulemanager.lua --- a/core/modulemanager.lua Mon Jun 22 18:05:36 2009 +0100 +++ b/core/modulemanager.lua Mon Jun 22 21:54:34 2009 +0100 @@ -197,7 +197,7 @@ local _mod, err = pluginloader.load_code(name); -- checking for syntax errors if not _mod then - log("error", "Unable to load module '%s': %s", module_name or "nil", err or "nil"); + log("error", "Unable to load module '%s': %s", name or "nil", err or "nil"); return nil, err; end