diff options
author | Matthew Wild <mwild1@gmail.com> | 2016-09-27 22:01:13 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2016-09-27 22:01:13 +0100 |
commit | f2763a36e743df8ea1bb14e20103c710511e1102 (patch) | |
tree | 3eee284338e0f6f1efb324d967087073e654b1a5 /prosodyctl | |
parent | dee6ced516c3b111d5e838bc0cfd9ae00a7e2f21 (diff) | |
download | prosody-f2763a36e743df8ea1bb14e20103c710511e1102.tar.gz prosody-f2763a36e743df8ea1bb14e20103c710511e1102.zip |
prosodyctl: Fix copy/paste error in help text for deluser command
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -361,8 +361,8 @@ function commands.deluser(arg) end local user, host = jid_split(arg[1]); if not user and host then - show_message [[Failed to understand JID, please supply the JID you want to set the password for]] - show_usage [[passwd user@host]] + show_message [[Failed to understand JID, please supply the JID to the user account you want to delete]] + show_usage [[deluser user@host]] return 1; end |