fix (video_mod): Typo in setting response.

This commit is contained in:
2021-09-25 17:49:47 +03:00
parent 055e31d683
commit 49f99c69b6

View File

@@ -39,7 +39,7 @@ class video_channels(settings.ChannelList, settings.ListData, settings.Setting):
@property @property
def success_response(self): def success_response(self):
if self.value: if self.value:
return "Membrs must enable their video in the following channels:\n{}".format(self.formatted) return "Members must enable their video in the following channels:\n{}".format(self.formatted)
else: else:
return "There are no video-required channels set up." return "There are no video-required channels set up."