Switching to fetchval

This commit is contained in:
Dusty.P 2018-04-20 20:11:55 -08:00
parent 9ef06824a7
commit 6d8f3531a7

View File

@ -156,7 +156,7 @@ class Repl:
if ctx.author.id != ownerid:
return
try:
body = self.cleanup_code(body).split(' ')
body = self.cleanup_code(body)
result = await asyncio.wait_for(self.bot.loop.create_task(run_command(body)), 10)
value = result
for page in paginate(value):