aboutsummaryrefslogtreecommitdiffstats
path: root/core/modulemanager.lua
diff options
context:
space:
mode:
Diffstat (limited to 'core/modulemanager.lua')
-rw-r--r--core/modulemanager.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua
index aca314c0..f0648667 100644
--- a/core/modulemanager.lua
+++ b/core/modulemanager.lua
@@ -186,7 +186,7 @@ local function do_load_module(host, module_name)
end
if host ~= api_instance.host and module_has_method(pluginenv, "add_host") then
-- Now load the module again onto the host it was originally being loaded on
- do_load_module(host, module_name);
+ ok, err = do_load_module(host, module_name);
end
end
end