1
0
Fork 0
mirror of synced 2024-06-28 11:10:27 +12:00

Uses the default bot.loop instead of the one in config

This commit is contained in:
Phxntxm 2016-07-29 07:52:50 -05:00
parent 7a44081ea3
commit 7344058a7b

View file

@ -56,7 +56,7 @@ class Owner:
await self.bot.say("```{0}```".format(result))
elif match_single:
def r(v):
config.loop.create_task(self.bot.say("```{0}```".format(v)))
self.bot.loop.create_task(self.bot.say("```{}```".format(v)))
exec(match_multi[0])
@commands.command(pass_context=True)