prosodyctl: Fix traceback when issued with no parameters

This commit is contained in:
Matthew Wild 2009-07-08 16:38:46 +01:00
parent 6776117801
commit 5131cb250a

View file

@ -444,7 +444,7 @@ end
---------------------
if command:match("^mod_") then -- Is a command in a module
if command and command:match("^mod_") then -- Is a command in a module
local module_name = command:match("^mod_(.+)");
local ret, err = modulemanager.load("*", module_name);
if not ret then