Plurality matters (use correct variable name) (#4542)

This commit is contained in:
jack1142
2020-10-27 02:02:39 +01:00
committed by GitHub
parent 0156ce132c
commit b30a8b86a4

View File

@@ -370,7 +370,7 @@ class Mutes(VoiceMutes, commands.Cog, metaclass=CompositeMetaClass):
if reason not in reasons:
reasons[reason] = [channel]
else:
reason[reason].append(channel)
reasons[reason].append(channel)
error_msg = _("{member} could not be unmuted for the following reasons:\n").format(
member=member
)