Forgot an await
This commit is contained in:
parent
52293bb561
commit
cd87a5cc72
|
|
@ -77,7 +77,7 @@ class VocalMaisBot(discord.Client):
|
||||||
elif _check_list_element(contents, 1, "clear"):
|
elif _check_list_element(contents, 1, "clear"):
|
||||||
return await self.clear_watched_channels(message)
|
return await self.clear_watched_channels(message)
|
||||||
else:
|
else:
|
||||||
return self.sorry_do_not_understand(message)
|
return await self.sorry_do_not_understand(message)
|
||||||
|
|
||||||
async def print_help(self, channel: discord.TextChannel):
|
async def print_help(self, channel: discord.TextChannel):
|
||||||
me = self.user.display_name
|
me = self.user.display_name
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue