fix(sessions): Fix notification typo.

This commit is contained in:
2023-10-06 10:22:52 +03:00
parent f51bcdd6e2
commit ad8463a6d7

View File

@@ -442,7 +442,7 @@ class ScheduledSession:
'session|notify|dm|join_line:channels',
"Please attend your session by joining one of the following:"
))
join_line = '\n'.join(join_line, *(channel.mention for channel in valid[:20]))
join_line = '\n'.join((join_line, *(channel.mention for channel in valid[:20])))
if len(valid) > 20:
join_line += '\n...'