Software / code / prosody
Changeset
1499:51e3e22b5316
prosodyctl: Fix traceback when issued with no parameters
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Wed, 08 Jul 2009 16:38:46 +0100 |
| parents | 1498:481dfc89047a |
| children | 1500:56d05ba00169 |
| files | prosodyctl |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/prosodyctl Wed Jul 08 15:23:07 2009 +0100 +++ b/prosodyctl Wed Jul 08 16:38:46 2009 +0100 @@ -444,7 +444,7 @@ --------------------- -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