# HG changeset patch # User Matthew Wild # Date 1247067526 -3600 # Node ID 51e3e22b531686f0d62fc06394552b4161452e03 # Parent 481dfc89047aae2f42ab8182346ed1703394908c prosodyctl: Fix traceback when issued with no parameters diff -r 481dfc89047a -r 51e3e22b5316 prosodyctl --- 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