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 | 1c8c4a4b60ed1118629d1004ec1e6639ed1108b6 (patch) | |
tree | 09a0390c8c3120c75e9e8d425a099531e84c1f54 /util | |
parent | 5dc0e3901776eb546f69536bd0ca80a8715a84df (diff) | |
download | prosody-1c8c4a4b60ed1118629d1004ec1e6639ed1108b6.tar.gz prosody-1c8c4a4b60ed1118629d1004ec1e6639ed1108b6.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 |