Sort nicknames case-insensitively (stats.py)

This commit is contained in:
jesopo 2018-12-26 23:24:43 +00:00
parent e5600a6927
commit b8b0adb811

View file

@ -83,7 +83,8 @@ class Module(ModuleManager.BaseModule):
def _channel_stats(self, channel):
return {
"users": sorted([user.nickname for user in channel.users]),
"users": sorted([user.nickname for user in channel.users],
key=lambda nickname: nickname.lower()),
"topic": channel.topic,
"topic-set-at": channel.topic_time,
"topic-set-by": channel.topic_setter_nickname