mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: Use already sorted array of module names [luacheck]
This commit is contained in:
parent
1a1d74a1b2
commit
413055c14d
1 changed files with 1 additions and 1 deletions
|
@ -594,7 +594,7 @@ function commands.about(arg)
|
|||
module_versions["libevent"] = luaevent.core.libevent_version();
|
||||
end
|
||||
local sorted_keys = array.collect(keys(module_versions)):sort();
|
||||
for _, name in ipairs(array.collect(keys(module_versions)):sort()) do
|
||||
for _, name in ipairs(sorted_keys) do
|
||||
print(name..":"..string.rep(" ", longest_name-#name), module_versions[name]);
|
||||
end
|
||||
print("");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue