core/modulemanager.lua

changeset 769
9e76018c62fa
parent 760
90ce865eebd8
child 778
0d94b4903cc7
--- a/core/modulemanager.lua	Mon Feb 02 18:05:21 2009 +0000
+++ b/core/modulemanager.lua	Wed Feb 04 18:53:23 2009 +0000
@@ -90,7 +90,9 @@
 	
 	if not modulemap[host] then
 		modulemap[host] = {};
-	elseif modulemap[host][module_name] then
+	end
+	
+	if modulemap[host][module_name] then
 		log("warn", "%s is already loaded for %s, so not loading again", module_name, host);
 		return nil, "module-already-loaded";
 	elseif modulemap["*"][module_name] then

mercurial