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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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
)