diff options
author | Kim Alvefur <zash@zash.se> | 2021-02-03 23:47:59 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-02-03 23:47:59 +0100 |
commit | fdf14d1c06d32eeb4d6bf080591911718b75221e (patch) | |
tree | 7349324e52b3a406bca07da3d1119013d35f7b2d | |
parent | 8aebef35aeb88e3144b88153e7e134353e6e7777 (diff) | |
download | prosody-fdf14d1c06d32eeb4d6bf080591911718b75221e.tar.gz prosody-fdf14d1c06d32eeb4d6bf080591911718b75221e.zip |
mod_admin_shell: Remove previous print() call
Accident involving Mercurial interactive commit
-rw-r--r-- | plugins/mod_admin_shell.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/mod_admin_shell.lua b/plugins/mod_admin_shell.lua index deb2e263..a6ed4732 100644 --- a/plugins/mod_admin_shell.lua +++ b/plugins/mod_admin_shell.lua @@ -1238,7 +1238,6 @@ function def_env.http:list(hosts) for _, provider in ipairs(http_apps) do local mod = provider._provided_by; local url = module:context(host):http_url(provider.name, provider.default_path); - print("", url); mod = mod and "mod_"..mod or "" print("", mod, url); end |