aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/cogs/off_topic_names.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/off_topic_names.py b/bot/cogs/off_topic_names.py
index 58a53118e..2cdaa2c4f 100644
--- a/bot/cogs/off_topic_names.py
+++ b/bot/cogs/off_topic_names.py
@@ -86,7 +86,7 @@ class OffTopicNames:
async def on_ready(self):
if self.updater_task is None:
coro = update_names(self.bot, self.headers)
- self.updater_task = await self.bot.loop.create_task(coro)
+ self.updater_task = self.bot.loop.create_task(coro)
@group(name='otname', aliases=('otnames', 'otn'), invoke_without_command=True)
@with_role(*MODERATION_ROLES)