diff options
author | Kim Alvefur <zash@zash.se> | 2020-06-17 19:39:14 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-06-17 19:39:14 +0200 |
commit | 3077309ce7d96550a8e536e75bdf93a7ebdda096 (patch) | |
tree | 09a0390c8c3120c75e9e8d425a099531e84c1f54 /util | |
parent | e2685cad2fbd4fbdecec1ceecab6ae3429a71070 (diff) | |
download | prosody-3077309ce7d96550a8e536e75bdf93a7ebdda096.tar.gz prosody-3077309ce7d96550a8e536e75bdf93a7ebdda096.zip |
util.prosodyctl.shell: Collect extra return values
Forgot in previous commit
Diffstat (limited to 'util')
-rw-r--r-- | util/prosodyctl/shell.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/prosodyctl/shell.lua b/util/prosodyctl/shell.lua index d0a6881e..9ac982f7 100644 --- a/util/prosodyctl/shell.lua +++ b/util/prosodyctl/shell.lua @@ -60,7 +60,7 @@ end local function start(arg) --luacheck: ignore 212/arg local client = adminstream.client(); - local opts = parse_args(arg); + local opts, err, where = parse_args(arg); if not opts then if err == "param-not-found" then |