diff options
author | Kim Alvefur <zash@zash.se> | 2012-09-28 11:59:37 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2012-09-28 11:59:37 +0200 |
commit | 385524de74065fc1ab7c80d5a9a12d14ab475e44 (patch) | |
tree | e38cb97ac0c650ba81c8cc04ab37819ff82ce49c | |
parent | 5399a5e5e67e5224376e34d0520f9d1f7d4958e0 (diff) | |
download | prosody-385524de74065fc1ab7c80d5a9a12d14ab475e44.tar.gz prosody-385524de74065fc1ab7c80d5a9a12d14ab475e44.zip |
mod_admin_telnet: Fix copypaste error in user section of help
-rw-r--r-- | plugins/mod_admin_telnet.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_admin_telnet.lua b/plugins/mod_admin_telnet.lua index 3fb56c58..9d3186d6 100644 --- a/plugins/mod_admin_telnet.lua +++ b/plugins/mod_admin_telnet.lua @@ -228,7 +228,7 @@ function commands.help(session, data) print [[user:create(jid, password) - Create the specified user account]] print [[user:password(jid, password) - Set the password for the specified user account]] print [[user:delete(jid) - Permanently remove the specified user account]] - print [[host:list(hostname) - List users on the specified host]] + print [[user:list(hostname) - List users on the specified host]] elseif section == "server" then print [[server:version() - Show the server's version number]] print [[server:uptime() - Show how long the server has been running]] |