]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Try to improve help message
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 29 May 2018 12:46:27 +0000 (13:46 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 29 May 2018 12:46:27 +0000 (13:46 +0100)
contrib/lua-argparse/argparse.lua

index 402f14a9b7d504d4c6f3c65cd50bd9b5f0d6e532..48950a66209c53b5bca830c62ec5e5ed0673c5a3 100644 (file)
@@ -488,26 +488,15 @@ function Option:_get_label_lines()
       return {table.concat(self._aliases, ", ")}
    end
 
-   local longest_alias_length = -1
-
-   for _, alias in ipairs(self._aliases) do
-      longest_alias_length = math.max(longest_alias_length, #alias)
-   end
-
    local argument_list_repr = table.concat(argument_list, " ")
    local lines = {}
 
    for i, alias in ipairs(self._aliases) do
-      local line = (" "):rep(longest_alias_length - #alias) .. alias .. " " .. argument_list_repr
-
-      if i ~= #self._aliases then
-         line = line .. ","
-      end
-
+      local line = alias .. " " .. argument_list_repr
       table.insert(lines, line)
    end
 
-   return lines
+   return {table.concat(lines, ", ")}
 end
 
 function Command:_get_label_lines()