aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-12-02 20:32:44 +0000
committerMatthew Wild <mwild1@gmail.com>2009-12-02 20:32:44 +0000
commit44066a08973f29598540253e317ef6f9b98d5133 (patch)
tree3e5a6aa406deb0e644c123ad78c6a614c53f68c3 /core
parent6df0af47765087bbe8e54ddc1272b303fcc875d2 (diff)
downloadprosody-44066a08973f29598540253e317ef6f9b98d5133.tar.gz
prosody-44066a08973f29598540253e317ef6f9b98d5133.zip
modulemanager, net.dns: Remove trailing whitespace
Diffstat (limited to 'core')
-rw-r--r--core/modulemanager.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua
index 6440f8b8..65a38ccb 100644
--- a/core/modulemanager.lua
+++ b/core/modulemanager.lua
@@ -175,7 +175,7 @@ function is_loaded(host, name)
end
function unload(host, name, ...)
- local mod = get_module(host, name);
+ local mod = get_module(host, name);
if not mod then return nil, "module-not-loaded"; end
if module_has_method(mod, "unload") then
@@ -282,7 +282,7 @@ function module_has_method(module, method)
end
function call_module_method(module, method, ...)
- if module_has_method(module, method) then
+ if module_has_method(module, method) then
local f = module.module[method];
return pcall(f, ...);
else
@@ -291,7 +291,7 @@ function call_module_method(module, method, ...)
end
----- API functions exposed to modules -----------
--- Must all be in api.*
+-- Must all be in api.*
-- Returns the name of the current module
function api:get_name()