diff options
author | 2021-04-19 18:16:42 +0100 | |
---|---|---|
committer | 2021-04-19 18:16:42 +0100 | |
commit | a6b76092e6e6005fc98c9863db051804d7bb963a (patch) | |
tree | 67ac2d202f70abae936fab141e224ab1bb70f3f5 | |
parent | Add command to list users with streaming perms (diff) |
Update wording of comment to be clearer.
-rw-r--r-- | bot/exts/moderation/stream.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/stream.py b/bot/exts/moderation/stream.py index 5f3820748..d9837b5ed 100644 --- a/bot/exts/moderation/stream.py +++ b/bot/exts/moderation/stream.py @@ -186,7 +186,7 @@ class Stream(commands.Cog): ] # List of tuples (UtcPosixTimestamp, str) - # This is so that we can sort before outputting to the paginator + # This is so that output can be sorted on [0] before passed it's to the paginator streamer_info = [] for member in non_staff_members_with_stream: if revoke_time := await self.task_cache.get(member.id): |