Config: Sort output of @list.

This commit is contained in:
Valentin Lorentz 2019-12-24 02:43:31 +01:00
parent fcb342cb2c
commit 12b6c9d60e
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ class Config(callbacks.Plugin):
"""
L = self._list(irc, group)
if L:
irc.reply(format('%L', L))
irc.reply(format('%L', sorted(L)))
else:
irc.error(_('There don\'t seem to be any values in %s.') %
group._name)