aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/stats.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/stats.py b/modules/stats.py
index 32ad3bee..6a971435 100644
--- a/modules/stats.py
+++ b/modules/stats.py
@@ -83,7 +83,7 @@ class Module(ModuleManager.BaseModule):
def _channel_stats(self, channel):
return {
- "users": [user.nickname for user in channel.users],
+ "users": sorted([user.nickname for user in channel.users]),
"topic": channel.topic,
"topic-set-at": channel.topic_time,
"topic-set-by": channel.topic_setter_nickname