diff options
author | Thomas Gst?dtner <thomas@gstaedtner.net> | 2016-02-08 14:48:50 +0100 |
---|---|---|
committer | Thomas Gst?dtner <thomas@gstaedtner.net> | 2016-02-08 14:48:50 +0100 |
commit | 9ab736e3f14a13adf589ed2996de29804a94e376 (patch) | |
tree | 09a390f22061b916194fa254d1bb88b492ac25f4 | |
parent | ceb159bd90ebeeeb8d17ffde84c4ae799a5079e4 (diff) | |
download | prosody-9ab736e3f14a13adf589ed2996de29804a94e376.tar.gz prosody-9ab736e3f14a13adf589ed2996de29804a94e376.zip |
prosodyctl: fix CnP bug in deluser output
-rwxr-xr-x | prosodyctl | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -364,8 +364,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 |